Hi Everyone,
I am working on an Expense Statement. On the statement there is a line for each expense entry:
Item GL Number Amount
Entertainment 10000 $75
Parking--Airport 10001 $50
Sundries 10002 $20
Parking--Downtown 10001 $100
At the bottom right of the worksheet, I am required to give totals for these expenses by GL Number. For the example above:
GL Number Total
10000 $75
10001 $150
10002 $20
The problem I have is that the original list of expenses can be in any order, and there are dozens of possible GL Numbers to total but each person typically will only have 3-4 different ones on their expense statement. I only have about a dozen lines on the worksheet to total things up.
Any ideas on how I can do this? I'm not sure how I could do this with a SUMIF since I won't know what the GL Number is each time. In SQL I would simply do a GROUP BY.
Thanks!
I am working on an Expense Statement. On the statement there is a line for each expense entry:
Item GL Number Amount
Entertainment 10000 $75
Parking--Airport 10001 $50
Sundries 10002 $20
Parking--Downtown 10001 $100
At the bottom right of the worksheet, I am required to give totals for these expenses by GL Number. For the example above:
GL Number Total
10000 $75
10001 $150
10002 $20
The problem I have is that the original list of expenses can be in any order, and there are dozens of possible GL Numbers to total but each person typically will only have 3-4 different ones on their expense statement. I only have about a dozen lines on the worksheet to total things up.
Any ideas on how I can do this? I'm not sure how I could do this with a SUMIF since I won't know what the GL Number is each time. In SQL I would simply do a GROUP BY.
Thanks!