I'm needing to build a report which displays values from the registry for WSUS detect, download and install.
I have the registry scanning options set and this is working well.  The problem becomes in reporting as all three valuenames are the same "LastSuccessTime"
The report is generating and giving me three lines for each PC
pc1    detect     date
pc1    download   date
pc1    install   date
pc2    detect     date
pc2    download   date
pc2    install   date
pc3    detect     date
pc3    download   date
pc3    install   date
Ideally, I would like to have
         Detect       Download     Install
PC1        date          date        date
PC2        date          date        date
PC3        date          date        date
PC4        date          date        date
From the report builder, here's the code:
Select Top 1000000 tblRegistry.Valuename, tblRegistry.Value,
  tblRegistry.Computername, tblComputers.LastknownIP, tblComputers.Computer,
  tblComputers.Username, tblADusers.Firstname, tblADusers.Lastname,
  tblRegistry.Regkey
From tblRegistry Inner Join
  tblComputers On tblComputers.Computername = tblRegistry.Computername
  Inner Join
  tblADusers On tblADusers.Username = tblComputers.Username
any help / thoughts would be greatly appreciated.