Thanks for the reply... I tried making the changes but the report is still blank.... When I convert my report to SQL this is what it looks like......
Select NodeName, IP_Address, Status, Status_Icon, Cast(Cust As nvarchar(250)) as Cust From ( SELECT
Nodes.Caption AS NodeName, Nodes.IP_Address AS IP_Address, Nodes.Status AS Status, Nodes.StatusLED AS Status_Icon, Nodes.Cust AS Cust
FROM
Nodes
WHERE (
(Nodes.Status = '9') AND
(Nodes.Cust <> 'NewCust')
)
) As r
I changed the line to Nodes.Cust <> 'NewCust' to Nodes.Cust NOT LIKE '%NewCust%'
After running the SQL the report is still blank....
If I change the report back to
Select NodeName, IP_Address, Status, Status_Icon, Cast(Cust As nvarchar(250)) as Cust From ( SELECT
Nodes.Caption AS NodeName, Nodes.IP_Address AS IP_Address, Nodes.Status AS Status, Nodes.StatusLED AS Status_Icon, Nodes.Cust AS Cust
FROM
Nodes
WHERE (
(Nodes.Status = '9')
)
) As r
The report will run and the report will show all nodes that are unmanaged including the nodes that have the custom property 'Cust = NewCust'
Is it possible that the Custom Property field can not be used as a filter in a nodes Report?