Hi,
Need assistance building a report and exporting it to excel.. Need to report specific software for licensing. For example nned ot find number of installations for Visio, project, etc. Need to include the workstation name, software version and user name if possible. Have made several attempts in Report builder (have the latest 3.5.2.6) but the reports come up blank. I watched the video and have attepted to use the concepts but have not had success. I don't use access or sql much so am a little lost.
The sql comes up
Select Top 100 Percent tblSoftware.softwareName, tblSoftware.SoftwarePublisher,
tblComputers.Computername, tblSoftware.softwareVersion
From tblComputers Inner Join
tblSoftware On tblComputers.Computername = tblSoftware.ComputerName
Where tblSoftware.softwareName Like 'Visio'
Thanks for your help
Paul