I have two tables:
T1 T2
Date A B C Date A C D
8/1 10 10 10 8/1 20 20 20
8/2 15 15 15 8/2 10 10 10
8/3 20 20 20
Then I have a query based on these tables with the following fields:
Date A B C D
(T1) (T1+T2) (T1) (T1+T2) (T2)
8/1 30 10 30 20
8/2 25 15 25 10
The problem is that 8/3 counts won't appear unless I add an 8/3 entry on T2 with zero counts. Is there any way to solve this?
T1 T2
Date A B C Date A C D
8/1 10 10 10 8/1 20 20 20
8/2 15 15 15 8/2 10 10 10
8/3 20 20 20
Then I have a query based on these tables with the following fields:
Date A B C D
(T1) (T1+T2) (T1) (T1+T2) (T2)
8/1 30 10 30 20
8/2 25 15 25 10
The problem is that 8/3 counts won't appear unless I add an 8/3 entry on T2 with zero counts. Is there any way to solve this?