Hello!
I'm running into a weird error with a Summary Budget Top Sheet I'm trying to build. I have two sheets. One summary budget top sheet and one expense log sheet. The summary sheet lists all the expenses types available on the expense log and I am trying to create SUMIFS to group together specific types of expenses on the Top Sheet.
I tested the follow SUMIF formula on the expense log sheet and it works correctly.
=SUMIFS(Amount:Amount, [Expense Category]:[Expense Category], "Personnel", [Hiring Status]:[Hiring Status], "Freelance", Department:Department, "Editorial/Production", Position:Position, "Editor", [Payment Status]:[Payment Status], "Actual")
However when I try to copy this formula to the TOP SHEET with a reference to the EXPENSE LOG it returns #UNPARSEABLE.
=SUMIFS({Test Expense Log Range 1}(Amount, [Expense Category]:[Expense Category], "Personnel", [Hiring Status]:[Hiring Status], "Freelance", Department:Department, "Editorial/Production", Position:Position, "Editor", [Payment Status]:[Payment Status], "Actual"))
Am I missing a punctuation mark of some sort to get this to return correctly?