cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
jmichiels
Engaged Sweeper III
Hey

I want make a report that show how many devices with active/spare/loan,... state in Counts (not list).
I have own template report with counts for software or publisher but not for state, ip location,..
Thanks



1 ACCEPTED SOLUTION
Susan_A
Lansweeper Alumni
A sample report can be seen below. Instructions for running reports can be found here. You can add any report to your dashboard with the Data Report widget.

If you are interested in building or modifying reports, we would recommend:
  • Reviewing some SQL tutorials, as the Lansweeper report builder uses standard SQL queries. This seems like a good tutorial.
  • Updating to Lansweeper 5.2, if you haven't already. Lansweeper 5.2 includes a database dictionary, which is linked at the top of the report builder. The dictionary explains in great detail what each table and field stores.

Select Top 1000000 tblState.Statename As State,
Count(tblAssets.AssetID) As Count
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblState On tblState.State = tblAssetCustom.State
Group By tblState.Statename
Order By State

View solution in original post

1 REPLY 1
Susan_A
Lansweeper Alumni
A sample report can be seen below. Instructions for running reports can be found here. You can add any report to your dashboard with the Data Report widget.

If you are interested in building or modifying reports, we would recommend:
  • Reviewing some SQL tutorials, as the Lansweeper report builder uses standard SQL queries. This seems like a good tutorial.
  • Updating to Lansweeper 5.2, if you haven't already. Lansweeper 5.2 includes a database dictionary, which is linked at the top of the report builder. The dictionary explains in great detail what each table and field stores.

Select Top 1000000 tblState.Statename As State,
Count(tblAssets.AssetID) As Count
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblState On tblState.State = tblAssetCustom.State
Group By tblState.Statename
Order By State