I need a report that pulls a total number of taxpayers from a table containing multiple transactions. Here is how it is structured.
Here is what it would look like:
TaxpayerID Date Remitted Amount 1 Remitted Amount2
4837 11\5\1999 45.00 5.00
4958 11\19\1999 56.00 5.00
4958 11\19\1999 45.00 5.00
4958 11\20\1999 48.00 5.00
5963 12\13\1999 56.00 5.00
Okay, this should be pretty good. I have a total of 5 transactions here, but
only 3 taxpayers. What I need returned on my report is (for a given fiscal year)
The total taxpayers (3 in this case) and the sum of columns 3 and 4 (there may be
more remitted amounts, I kept it at 2 for my example). So the report would
return something like:Fiscal year of 10\1\1999 - 9\30\2000Total Taxpayers: 3
Total Remitted Amount: $275.00Any ideas are appreciated.
Here is what it would look like:
TaxpayerID Date Remitted Amount 1 Remitted Amount2
4837 11\5\1999 45.00 5.00
4958 11\19\1999 56.00 5.00
4958 11\19\1999 45.00 5.00
4958 11\20\1999 48.00 5.00
5963 12\13\1999 56.00 5.00
Okay, this should be pretty good. I have a total of 5 transactions here, but
only 3 taxpayers. What I need returned on my report is (for a given fiscal year)
The total taxpayers (3 in this case) and the sum of columns 3 and 4 (there may be
more remitted amounts, I kept it at 2 for my example). So the report would
return something like:Fiscal year of 10\1\1999 - 9\30\2000Total Taxpayers: 3
Total Remitted Amount: $275.00Any ideas are appreciated.