Hello everyone!
I am currently attempting a SUMIF equation that initially worked and is now broken. Here are the parameters.
I would like the sum of the dollar amount in this column "FY24 Adopted Budget" to show in a cell in this column, "July Expenditure" based on the information in these columns "Cost Center" (Dropdown List), "Object Code" (Dropdown list), "Date Created" (Date), "Project Description" (Dropdown List), and "Vendor" (Dropdown List).
Below is the updated formula I input in the one of the cells in the "July Expenditure" column.
=SUMIFS([FY24 Adopted Budget]:[FY24 Adopted Budget], [Cost Center]:[Cost Center], "280110", [Object Code]:[Object Code], "612120", [Date Created]:[Date Created], MONTH(@cell) = 7, [Project Description]:[Project Description], "Henry Ford", [Vendor]:[Vendor], "HENRY FORD HEALTH SYSTEM")
So basically I would like the sum all of the money spent on Henry Ford Health System for that object code and cost center in the month of July.
For some reason when I hit enter, I get the #INVALID DATA TYPE response and when I go to review the formula, the brackets around "Vendor" have disappeared.
Now, my original formula that included slightly different parameters worked just fine:
Sum of the dollar amount in this column "FY24 Adopted Budget" to show in a cell in this column, "July Expenditure" based on the information in these columns "Cost Center" (Dropdown List), "PO/Invoice" (Dropdown list), "Date Created" (Date), and "Project Description" (Dropdown List).
=SUMIFS([FY24 Adopted Budget]:[FY24 Adopted Budget], [Cost Center]:[Cost Center], "280110 HR Administration", [PO/Invoice]:[PO/Invoice], "Invoice", [Date Created]:[Date Created], MONTH(@cell) = 7 [Project Description]:[Project Description], "Henry Ford")
This formula worked and isn't that different from the new one shown up top. I can't figure out what I'm missing.
Hopefully this make sense!😅