I have 4 tables set up as follows:
tblEmployee
EmployeeID
FullName
Department
tblInventory
EmployeeID
IDTag
Description
SerialNumber
tblSoftwareModuleUser (Join table)
EmployeeID
PackageID
tblSoftwareModule
PackageID
PackageName
tblEmployee is linked to both tblInventory and tblSoftwareModuleUser via EmployeeID. TblSoftwareModule is linked to tblSoftwareModuleUser via packageID.
I need to have a report which shows each user on a separate page with the info from the tblEmployee table with the equipment from tblinventory which she/he is currently using and all the software residing on the machine. I'm having trouble supressing duplicates on the report. Since I have the join table because of the many to many relationship between tblEmployee and tblSoftwareModule the inventory fields tend to repeat for every software module.
Any help would be greatly appreciated.
tblEmployee
EmployeeID
FullName
Department
tblInventory
EmployeeID
IDTag
Description
SerialNumber
tblSoftwareModuleUser (Join table)
EmployeeID
PackageID
tblSoftwareModule
PackageID
PackageName
tblEmployee is linked to both tblInventory and tblSoftwareModuleUser via EmployeeID. TblSoftwareModule is linked to tblSoftwareModuleUser via packageID.
I need to have a report which shows each user on a separate page with the info from the tblEmployee table with the equipment from tblinventory which she/he is currently using and all the software residing on the machine. I'm having trouble supressing duplicates on the report. Since I have the join table because of the many to many relationship between tblEmployee and tblSoftwareModule the inventory fields tend to repeat for every software module.
Any help would be greatly appreciated.