Hello,
I have recently started to use the Custom fields page, I have been adding each computer to its designated department.
Now I run a report that tells me which computer is in which department. All is well...
What I am stuck upon is that I want to make a report that will tell me which computer has "department" in Custom fields page field as blank. This will allow me to attend to these computers and specify which department they are currently in which in turn will give me a better report.
This is the report I made which shows me which PC's have no Symantec AV installed and are in which department currently.
SELECT
tblComputers.Computername,
tblComputers.LastknownIP,
tblComputers.LastActiveScan,
tblCompCustom.Department
FROM
web30repNoSymantec
INNER JOIN tblComputers ON (web30repNoSymantec.Computer = tblComputers.Computername)
INNER JOIN tblCompCustom ON (tblComputers.Computername = tblCompCustom.Computername)
Like I said I am looking for a report that will tell me which computers have "department" in tblCompCustom as empty