I moved this topic from the Report Center to Report Requests & Questions. Please note that the Report Center is moderated and should only be used to post ready-to-use reports, not questions.
In regards to your question: you can build a report based on the tblcplogoninfo table. A sample report that counts the number of logon events per day for the last week can be seen below. If you are interested in building or modifying reports, we would recommend:
- Reviewing some SQL tutorials, as the Lansweeper report builder is a standard SQL editor. If you know SQL, you know how to build Lansweeper reports as well. This seems like a good tutorial.
- Updating to Lansweeper 5.3, if you haven't already. Lansweeper 5.3 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 DatePart(dd, tblCPlogoninfo.logontime) As DayOfTheMonth,
Count(tblCPlogoninfo.ID) As Count
From tblCPlogoninfo
Where tblCPlogoninfo.logontime > GetDate() - 7
Group By DatePart(dd, tblCPlogoninfo.logontime)