Yes, Salamine, that's exactly what I needed. Thanks a ton!
The main thing I needed was to take the default report and add the asset
Location to it so that we could pull up the report and see the location of each device without having to click into each one. So, I took what you gave me and added to it to look like this (in case it might help anyone else):
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssetCustom.Location,
tsysAssetTypes.AssetTypename As Type,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tblAssets.IPAddress As [IP Address],
tblAssets.Lastseen
From tblAssets
Left Join tsysIPLocations On tblAssets.IPNumeric >= tsysIPLocations.StartIP
And tblAssets.IPNumeric <= tsysIPLocations.EndIP
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tsysIPLocations.IPLocation = 'SEND-WS System'
Order By tblAssetCustom.OrderNumber
I also added an order number to each device (1-9,A,B) and ordered by that hidden column so we can see the devices in order down the line.
Thanks again!
Jono