I am trying to build a query from a table (Tbl_XYZ) that will give me the information for the primary key all in one row rather then creating dups for that primary key and showing up with multiple rows. Example below.( this is just a sample)
I was thinking creating 2 separate tables for System_Name and Table_Name but it would still give me values in different rows since the table names are different.
My expectation :
Any help with this would be greatly appreciated.
I am using MS Access 2013.
Thanks.
Account Number | System_Name | Table_Name |
---|---|---|
012345 | DW | Customer |
012345 | DW | Sales |
012345 | DW | Address |
012345 | AWS | aws_Cust |
012345 | AWS | aws_product |
My expectation :
Account Number | System_Name | Table_Name |
---|---|---|
012345 | DW | Customer / Sales / Address |
012345 | AWS | aws_Cust / aws_product |
I am using MS Access 2013.
Thanks.