Hi,
I have 3 tables with the following fields:
Table1: Account#; Project#; Business Unit#; Amount1
Table2: Account#; Project#; Business Unit#; Amount2
Table3: Account#; Project#; Business Unit#; Amount3
I need to join these 3 tables so that I have all the fields listed in one table (table4) as follow:
Account#; Project#; Business Unit#; Amount1;Amount2;Amount3
Also, I have some accounts that are repeated in table1, table2, and table3. How can i have such accounts come only once with their respective amounts listed under Amount1; Amount2; and Amount3.
Example: Account 600 is listed in table1 with Amount1 $100, and in table2 with Amount2 $200, and in table3 with Amount3 $300. In table4, I want one line for account 600 with Amount1 (100); Amount2 (200), Amount3 (300).
Thanks for your help.
I have 3 tables with the following fields:
Table1: Account#; Project#; Business Unit#; Amount1
Table2: Account#; Project#; Business Unit#; Amount2
Table3: Account#; Project#; Business Unit#; Amount3
I need to join these 3 tables so that I have all the fields listed in one table (table4) as follow:
Account#; Project#; Business Unit#; Amount1;Amount2;Amount3
Also, I have some accounts that are repeated in table1, table2, and table3. How can i have such accounts come only once with their respective amounts listed under Amount1; Amount2; and Amount3.
Example: Account 600 is listed in table1 with Amount1 $100, and in table2 with Amount2 $200, and in table3 with Amount3 $300. In table4, I want one line for account 600 with Amount1 (100); Amount2 (200), Amount3 (300).
Thanks for your help.