I need to combine a couple of tables having one or more similar fields. For eg:
T1 T2 T3
Date A B C D Date B C Date A C
8/1 10 10 10 10 8/2 20 20 8/1 30 30
8/2 10 10 10 10 8/2 30 30
8/3 10 10 10 10
I need to combine everything into one table:
T1
Date A B C D
8/1 40 10 40 10
8/2 40 30 60 10
8/3 10 10 10 10
I have tried designing a simple query with expressions adding the same fields across the tables. The problem with that is it dosen't show results if there are missing dates (i.e, in the above example only 8/2 will appear). I tried creating a union query but I am facing problems with different no. of fields needed to be merged from each table. I would appreciate any suggestions.
T1 T2 T3
Date A B C D Date B C Date A C
8/1 10 10 10 10 8/2 20 20 8/1 30 30
8/2 10 10 10 10 8/2 30 30
8/3 10 10 10 10
I need to combine everything into one table:
T1
Date A B C D
8/1 40 10 40 10
8/2 40 30 60 10
8/3 10 10 10 10
I have tried designing a simple query with expressions adding the same fields across the tables. The problem with that is it dosen't show results if there are missing dates (i.e, in the above example only 8/2 will appear). I tried creating a union query but I am facing problems with different no. of fields needed to be merged from each table. I would appreciate any suggestions.