W
Wei
In a totals query, I want to group my dada by ID, which
has a range of 1-10; and sum the premiums. Say my dada
only has IDs 1, 2 and 8. So when I run query, it's going
to give me stuff like:
ID SumOfPremium
1 1000
2 200
8 678
Is there a way to make the query give me the other IDs and
show the sums as zeros? ie, something like this:
ID SumOfPremium
1 1000
2 200
3 0
4 0
5 0
6 0
7 0
8 678
9 0
10 0
Thanks for any suggestions!
Wei
has a range of 1-10; and sum the premiums. Say my dada
only has IDs 1, 2 and 8. So when I run query, it's going
to give me stuff like:
ID SumOfPremium
1 1000
2 200
8 678
Is there a way to make the query give me the other IDs and
show the sums as zeros? ie, something like this:
ID SumOfPremium
1 1000
2 200
3 0
4 0
5 0
6 0
7 0
8 678
9 0
10 0
Thanks for any suggestions!
Wei