Below is the original response I got from LanSweeper Support. But, my Sales Rep recently told me that the Historical reporting will be in the 6.1 release but there is no estimated release date at this point in time.
Email from LanSweeper support:Thank you for trying out Lansweeper!
The history that the Lansweeper database records consists of software and hardware history of assets. It doesn't directly record the history of the Location, Department, etc. fields. You could work around this though, by exporting scheduled asset reports and using these to keep a history of those specific fields.
This would require the following:
• A custom report listing all the required fields. We've added a sample report at the bottom to give you an idea. Instructions for adding this report to your Lansweeper installation can be found here.
• Setting up a report export to file or email at Configuration\Email Alerts, there you can set up an automated directory or email export of any report you select.
Select Top 1000000 GetDate() As [Date and time of report],
tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.Username,
tblAssets.Userdomain,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssetCustom.Location,
tblAssetCustom.Department,
tblAssetCustom.Building,
tblAssetCustom.Branchoffice
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tblAssetCustom.State = 1