Hi.
I´m trying to get out a report about ALL my machines.
for example I want," Computername, Model, Soundcard, Graphiccard, Networkcard "
So far No problems
The problems starts when I get alot of duplicates, beacuse the report also shows me ALOT of Soundcard stuff like " SigmaTel High Definition Audio CODEC, IDT High Definition Audio CODEC etc " and ALOT of Networkcards like " RAS Async Adapter, WAN Miniport (IP), etc "
And the result of this will be ALOT of result for the SAME machine, one machine can end up displaying on 10 entrys instead of 1 entry.
Is there a way of creating a report, that only shows me the main Soundcard and main networkcard.
My report qvery...also attached togheter with som examples of what I mean.
Select Top 1000000 dbo.tblComputers.Computer, IsNull(dbo.tblComputerSystemProduct.Name, 'Unknown') As Model, IsNull(dbo.tblComputerSystemProduct.Vendor, 'Unknown') As Vendor, tblDisplayConfiguration.Caption As Graphiccard, tblSoundDevice.Caption As Soundcard, web40CorrectMemory.Memory As Memory, web40ProcessorCapacity.CPU As Processor, dbo.tblComputers.Username As [Senaste Användare], web40ProcessorCapacity.MaxClockSpeed As Hastighet, tblNetwork.MACaddress, tblNetwork.Description As Networkcard From dbo.tblComputers Inner Join dbo.tblComputerSystemProduct On dbo.tblComputers.Computername = dbo.tblComputerSystemProduct.Computername Inner Join dbo.web40ActiveComputers On dbo.tblComputers.Computername = dbo.web40ActiveComputers.Computername Inner Join tblSoundDevice On dbo.tblComputers.Computername = tblSoundDevice.Computername Inner Join tblDisplayConfiguration On dbo.tblComputers.Computername = tblDisplayConfiguration.Computername Inner Join web40ProcessorCapacity On web40ProcessorCapacity.Computername = dbo.tblComputers.Computername Inner Join web40CorrectMemory On web40CorrectMemory.Computername = dbo.tblComputers.Computername Inner Join tblPhysicalMemoryArray On dbo.tblComputers.Computername = tblPhysicalMemoryArray.Computername Inner Join tblNetwork On dbo.tblComputers.Computername = tblNetwork.Computername Group By dbo.tblComputers.Computer, IsNull(dbo.tblComputerSystemProduct.Name, 'Unknown'), IsNull(dbo.tblComputerSystemProduct.Vendor, 'Unknown'), tblDisplayConfiguration.Caption, tblSoundDevice.Caption, web40CorrectMemory.Memory, web40ProcessorCapacity.CPU, dbo.tblComputers.Username, web40ProcessorCapacity.MaxClockSpeed, tblNetwork.MACaddress, tblNetwork.Description Order By dbo.tblComputers.Computer, IsNull(dbo.tblComputerSystemProduct.Vendor, 'Unknown'), IsNull(dbo.tblComputerSystemProduct.Name, 'Unknown'), tblSoundDevice.Caption