I'm updating a personal budget spreadsheet to automate the relationships between my data.
The issue is my current attempts at solving this problem all return a blank value.
Here's what I'm currently trying:
=SUMIFS('Transactions - Month'!$E$2:$E$1000, 'Transactions - Month'!$D$2:$D$1000, "Taxes")
I'm pulling transaction values from the 'Transactions - Month' sheet (tab) to a "Budget" sheet (tab).
Transactions - Month'!$E$2:$E$1000` // **Transaction amounts**
Transactions - Month'!$D$2:$D$1000` // **Category name**
I'm expecting to add all sum_range values in the 'Transaction - Month' sheet that match the criteria_range values I'm calling.
i.e. C2 (Budget sheet cell) = SUMIFS(sum_range, criteria_range, criterion)
The result I'm currently seeing is:
"$ - "
How would you solve this problem?