
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-01-2010 05:15 PM
Can somone help me with the ReportBuilder? I try to show the current "state" of a computer and the "comment field" and the "Location". I only get values like 0 or 1 and no text.
Thx!
Johan
- Labels:
-
Archive

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-02-2010 05:02 PM
example:
active = green
broken = red
non active = gray
thx

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-02-2010 05:09 PM
Johan.wauters29834 wrote:
Is it posible to give every line a color based on the statename?
example:
active = green
broken = red
non active = gray
thx
Technically yes if you inject html code into the query but I won't recommend it.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-02-2010 02:34 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-01-2010 06:58 PM
but, only 24 computers are showing of the 130. Not all computers has a comment but should be in de list.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-01-2010 07:55 PM
Johan.wauters29834 wrote:
Nice thx! ! !
but, only 24 computers are showing of the 130. Not all computers has a comment but should be in de list.
try this:
Select Top 1000000 dbo.tblComputers.Computername, dbo.tblComputers.Username,
dbo.tblComputerSystemProduct.Name, dbo.tblComputerSystemProduct.Vendor,
tblComputerSystemProduct.IdentifyingNumber, dbo.tblComputers.Lastseen,
tblCompCustom.Location, tblCompCustom.Custom1, tblCompCustom.Comments,
tblstate.Statename
From dbo.tblComputers Left Outer Join
dbo.tblComputerSystemProduct On dbo.tblComputers.Computername =
dbo.tblComputerSystemProduct.Computername Left Join
tblCompCustom On tblCompCustom.Computername = dbo.tblComputers.Computername
Left Join
tblstate On tblstate.State = tblCompCustom.State

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-01-2010 05:59 PM
Select Top 1000000 dbo.tblComputers.Computername, dbo.tblComputers.Username,
dbo.tblComputerSystemProduct.Name, dbo.tblComputerSystemProduct.Vendor,
tblComputerSystemProduct.IdentifyingNumber, dbo.tblComputers.Lastseen,
tblCompCustom.Location, tblCompCustom.Custom1, tblCompCustom.Comments,
tblstate.Statename
From dbo.tblComputers Left Outer Join
dbo.tblComputerSystemProduct On dbo.tblComputers.Computername =
dbo.tblComputerSystemProduct.Computername Left Join
tblCompCustom On tblCompCustom.Computername = dbo.tblComputers.Computername
Inner Join
tblstate On tblstate.State = tblCompCustom.State

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-01-2010 05:40 PM
dbo.tblComputers.Username, dbo.tblComputerSystemProduct.Name,
dbo.tblComputerSystemProduct.Vendor,
tblComputerSystemProduct1.IdentifyingNumber, dbo.tblComputers.Lastseen,
tblCompCustom.Location, tblCompCustom.State, tblCompCustom.Custom1,
tblCompCustom.Comments
From dbo.tblComputers Left Outer Join
dbo.tblComputerSystemProduct On dbo.tblComputers.Computername =
dbo.tblComputerSystemProduct.Computername Inner Join
tblComputerSystemProduct tblComputerSystemProduct1 On
dbo.tblComputers.Computername = tblComputerSystemProduct1.Computername,
tblCompCustom
Group By dbo.tblComputers.Computername, dbo.tblComputers.Username,
dbo.tblComputerSystemProduct.Name, dbo.tblComputerSystemProduct.Vendor,
tblComputerSystemProduct1.IdentifyingNumber, dbo.tblComputers.Lastseen,
tblCompCustom.Location, tblCompCustom.State, tblCompCustom.Custom1,
tblCompCustom.Comments
Order By dbo.tblComputers.Computername

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-01-2010 05:29 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-01-2010 05:25 PM
