I need help combining records to create a new table with more fields. Here's a conceptual example: I have one table with three fields:
Name Dept Facility
Joe A 1
Joe A 2
Steve B 1
Bill A 2
As there's only one Joe here, my goal is a table/query:
Name Facility(1)Dept Facility(2)Dept
Joe A A
Steve B
Bill A
etc. That is, one record per name, including everyone with at least one Facility/Dept combination, but permitting one name to have two of these.
I wish I could express this more efficiently!
Thanks,
Tom
Name Dept Facility
Joe A 1
Joe A 2
Steve B 1
Bill A 2
As there's only one Joe here, my goal is a table/query:
Name Facility(1)Dept Facility(2)Dept
Joe A A
Steve B
Bill A
etc. That is, one record per name, including everyone with at least one Facility/Dept combination, but permitting one name to have two of these.
I wish I could express this more efficiently!
Thanks,
Tom