how to find the last table range of a specific value in Numbers
The goal is to find the total expense for a field within a range for the most recent week. This running amount will be subtracted from the budget allowance, to yield the remaining balance.
Summary sheet:
6/9/25 Original gasoline allowance: $50
6/14/25 Spent: $45
6/15/25 Balance remaining: $5
The formula will be inserted in the cell next to "Spent" and will reference a separate sheet of transactions.
"Balance remaining" will subtract "Original gasoline allowance"-"Spent"
On another worksheet (Transactions):
How do I insert a "Spent" formula in the Summary Sheet to show the gasoline expenses from 6/11 to 6/14 only?
Currently, I show the following by manually selecting the ranges from Transactions into the summary sheet:
SUMIFS(Transactions:D5:D9,Transactions:C5:C9,"Gasoline",Transactions:E5:E9,"CC")
Thank you.