cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
chads
Lansweeper Alumni
Looking to copy the Computer Overview report but add the chassis type column to it. been trying to add it but can't figure it out any help here.
1 ACCEPTED SOLUTION
RCorbeil
Honored Sweeper II
Make sure your table selection includes tblSystemEnclosure and TsysChassisTypes.

Linkage:
tblAssets -> tblSystemEnclosure -> TsysChassisTypes
  Inner Join tblSystemEnclosure On tblAssets.AssetID = tblSystemEnclosure.AssetID
Inner Join TsysChassisTypes On TsysChassisTypes.Chassistype = tblSystemEnclosure.ChassisTypes

Once you've got that, the description of the chassis is TsysChassisTypes.ChassisName.

View solution in original post

2 REPLIES 2
chads
Lansweeper Alumni
Thank you! see what i did wrong
RCorbeil
Honored Sweeper II
Make sure your table selection includes tblSystemEnclosure and TsysChassisTypes.

Linkage:
tblAssets -> tblSystemEnclosure -> TsysChassisTypes
  Inner Join tblSystemEnclosure On tblAssets.AssetID = tblSystemEnclosure.AssetID
Inner Join TsysChassisTypes On TsysChassisTypes.Chassistype = tblSystemEnclosure.ChassisTypes

Once you've got that, the description of the chassis is TsysChassisTypes.ChassisName.