Hello,
I have a table that contains contact names, their titles, and company_IDs th
at are used as the Primary Key. There are multiple contact names and titles
per each company_ID. I need to have them all listed on one row per company_id. Right now it looks like this:
Company_ID Person Title
12345 Bob Smith VP
12345 Pam Rollins President
I need it to be like this:
Company_ID Person01 Title01 Person02 Title02
12345 Bob Smith VP Pam Rollins President
I tried doing different query types but can't get anything to work. Is this something I should be using VB code for? I would appreciate any advice.
I have a table that contains contact names, their titles, and company_IDs th
at are used as the Primary Key. There are multiple contact names and titles
per each company_ID. I need to have them all listed on one row per company_id. Right now it looks like this:
Company_ID Person Title
12345 Bob Smith VP
12345 Pam Rollins President
I need it to be like this:
Company_ID Person01 Title01 Person02 Title02
12345 Bob Smith VP Pam Rollins President
I tried doing different query types but can't get anything to work. Is this something I should be using VB code for? I would appreciate any advice.