algomez2011
Technical User
First post. Hi all!
I have two tables both with identical column structure (110 columns). TableA has old records and TableB CAN have updated records or not. They have the same key in both tables. Field types are the same in both tables and there are null values in both.
TableA:
ID | F1 | F2 |.....| F110 |
1 | A | B |.....| C |
TableB:
ID | F1 | F2 |.....| F110 |
1 | Z | X |.....| C |
Output needed:
TableC:
ID | F1 | F2 |.....| F110 |
1 | A | B |.....| C |
1 | Z | X |.....| C |
So show the same "ID" for old and updated record and then highlight the fields that changed as I export this to excel.
I'm thinking worrying about creating TableC first then tackling the export/highlight thing after would probably be wiser.
I'm pretty much learning as I go.
Help! Thanks
I have two tables both with identical column structure (110 columns). TableA has old records and TableB CAN have updated records or not. They have the same key in both tables. Field types are the same in both tables and there are null values in both.
TableA:
ID | F1 | F2 |.....| F110 |
1 | A | B |.....| C |
TableB:
ID | F1 | F2 |.....| F110 |
1 | Z | X |.....| C |
Output needed:
TableC:
ID | F1 | F2 |.....| F110 |
1 | A | B |.....| C |
1 | Z | X |.....| C |
So show the same "ID" for old and updated record and then highlight the fields that changed as I export this to excel.
I'm thinking worrying about creating TableC first then tackling the export/highlight thing after would probably be wiser.
I'm pretty much learning as I go.
Help! Thanks