I have data that I download daily that I will use to generate reports. I知 importing the data into a table called table_ISA, a few ofthe fields are: lname, fname, percent complete, and reference. The referencefield has multiple entries in it that I want to roll up to a different name(for reporting), a couple examples are: Admin, HR will all be under the newheading HQ. Windows, Network, and operations will all be under the heading IT.
I知 sure there are many ways to do this, and since I知 kindof new to access, I壇 like to apply good DB practices. I was thinking ofcreating another table called Table_Organization that would look something likethis:
1, windows, it
2, network, it
3, operations, it
4, admin, hq
5, hr, hq
The Table_ISA will have multiple references to windows,network, operations etc.
Where I知 going with this is to have a report that lookssomething like this.
______________________________________
Last name first name Org. Incomplete
Smith john IT 10
The number 10 under incomplete is the count of records thatare incomplete. I致e got that part figured out, I need help with getting thereference field in the table ISA rolled up to generate a report with the titleOrg.
I was thinking of using the Table_Organization to assist inrolling up to the higher level name, but I知 not sure how to do this. Whichfield would I use as the key field in the relationship of the tables, and howwould I ensure that the Table_Organization has all the entries that are in theTable_ISA that I import daily.