Hi there
I'm trying to run a report to verify that 4 reports have been updated. Now, I have a report that checks one file but not sure of the syntax to add other files to it.
Thanks
Andy
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblFileVersions.Found,
tblFileVersions.FilePathfull,
tblFileVersions.FileVersion,
tblFileVersions.CompanyName,
tblFileVersions.Filesize,
tblFileVersions.Lastchanged
From tblAssets
Inner Join tblFileVersions On tblAssets.AssetID = tblFileVersions.AssetID
Where tblFileVersions.Found = 'True' And tblFileVersions.FilePathfull Like
'%Active Users.pdf' And tblAssets.Assettype = -1
Order By tblAssets.AssetName