→ 🚀What's New? Join Us for the Fall Product Launch! Register Now !
‎11-06-2018 01:38 PM
‎11-06-2018 05:30 PM
You're not actually including any fields from tblPrinters in your report, but you're producing results for each of the associated printers, hence what appears to be the duplicate entries. If you don't want duplicate results, remove the JOIN to tblPrinters. If, on the other hand, you want a list of printers, add fields from tblPrinters to your report and the results will no longer look like duplicates.
Inner Join tblPrinters On tblAssets.AssetID = tblPrinters.AssetID
tblPrinters.Caption,
CASE
WHEN tblPrinters.Local = 0 THEN 'No'
WHEN tblPrinters.Local = 1 THEN 'Yes'
END AS isLocal
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now