You're right, I forgot about the page limitation.
In that case you will have to use a report for both. Reports are always shared as an SQL query, you can find an explanation on how to add the SQL queries to your installation here: https://www.lansweeper.com/forum/yaf_postst9882_How-to-run-a-report.aspx
To get all the logon information from a single asset, you can run the following report after replacing the highlighted text with your asset's name.
Select Top 1000000 tblCPlogoninfo.Username,
tblCPlogoninfo.logontime,
tblAssets.AssetID,
tblAssets.AssetName
From tblAssets
Inner Join tblCPlogoninfo On tblAssets.AssetID = tblCPlogoninfo.AssetID
Where tblAssets.AssetName Like '%YourAssetName%'
Order By tblCPlogoninfo.Username,
tblCPlogoninfo.logontime
To filter it for a specific date you can modify the following report:
Select Top 1000000 tblCPlogoninfo.Username,
tblCPlogoninfo.logontime,
tblAssets.AssetID,
tblAssets.AssetName
From tblAssets
Inner Join tblCPlogoninfo On tblAssets.AssetID = tblCPlogoninfo.AssetID
Where tblCPlogoninfo.logontime Between '05/01/2018' And '06/01/2018'
Order By tblCPlogoninfo.Username,
tblCPlogoninfo.logontime
Date format is MM/DD/YYYY