Hello,
I have a few reports that are not working due to the upgrade.
This was a report that displayed computers that had Custom department field empty
Select Top 100 Percent dbo.tblComputers.Computername, dbo.tblComputers.LastknownIP, dbo.tblComputers.Lastseen As [Last Seen], dbo.tblComputers.Firstseen As [First Seen], dbo.tblCompCustom.Department From dbo.tblComputers Inner Join dbo.web30repallcompstates On (dbo.tblComputers.Computername = dbo.web30repallcompstates.Computername) Left Outer Join dbo.tblCompCustom On (dbo.web30repallcompstates.Computername = dbo.tblCompCustom.Computername) Where dbo.tblCompCustom.Department Is Null Or dbo.tblCompCustom.Department = '' Order By dbo.tblComputers.Computername
Please Advise