I have one table with dollar amounts and mmddyyyy dates broken out by grouping and class.
TableDollars for example:
Date grouping class amount
01192010 12345 abc 987.54
01072010 23456 abc 361.87
12152009 23456 xyz 567.23
01062010 23456 abc 345.67
I have another table with counts and the date in a YYYYMM format also broken by grouping and class.
TableCounts for example:
Date grouping class count
200912 12345 abc 75
200912 23456 xyz 56
201001 23456 xyz 54
201001 12345 abc 82
I would like to get the following where there are zeros where there are no corresponding values, but cannot seem to get it to work:
DATE GROUPING CLASS Sum of count Sum of amount
200912 12345 abc 75 $0
200912 12345 TOTAL 75 $0
200912 23456 xyz 56 $567.23
200912 23456 TOTAL 56 $567.23
200912 TOTAL 131 $567.23
201001 12345 abc 82 $987.54
201001 12345 TOTAL 82 $987.54
201001 23456 abc 0 $707.54
201001 23456 xyz 54 $0
201001 23456 TOTAL 54 $707.54
201001 TOTAL 136 $1695.08
Grand Total 267 $2262.31
I think part of my problem may be that I am linking on a formula field. Suggestions needed.
Thank you in advance!!!
TableDollars for example:
Date grouping class amount
01192010 12345 abc 987.54
01072010 23456 abc 361.87
12152009 23456 xyz 567.23
01062010 23456 abc 345.67
I have another table with counts and the date in a YYYYMM format also broken by grouping and class.
TableCounts for example:
Date grouping class count
200912 12345 abc 75
200912 23456 xyz 56
201001 23456 xyz 54
201001 12345 abc 82
I would like to get the following where there are zeros where there are no corresponding values, but cannot seem to get it to work:
DATE GROUPING CLASS Sum of count Sum of amount
200912 12345 abc 75 $0
200912 12345 TOTAL 75 $0
200912 23456 xyz 56 $567.23
200912 23456 TOTAL 56 $567.23
200912 TOTAL 131 $567.23
201001 12345 abc 82 $987.54
201001 12345 TOTAL 82 $987.54
201001 23456 abc 0 $707.54
201001 23456 xyz 54 $0
201001 23456 TOTAL 54 $707.54
201001 TOTAL 136 $1695.08
Grand Total 267 $2262.31
I think part of my problem may be that I am linking on a formula field. Suggestions needed.
Thank you in advance!!!