SUMIFS with OR (Sheet Summary)

I'm trying to create a sheet summary formula
Sum up a Column -Total Save
If
Status column is "Orange"
And
Hierarchy Level 4 - SubDivision is "Solutions"
And either
FY23 into FY22 Pull Frwd (TM Notify) box is checked
or
Addition to Pull Frwd box is checked
=SUMIFS([Total Save]:[Total Save], OR([FY23 into FY22 Pull Frwd (TM Notify)] = 1, [Addition to Pull Frwd (TM Notify)] = 1), Status:Status, "Orange", [Hierarchy Level 4 - SubDivison]:[Hierarchy Level 4 - SubDivison], "Solutions"))
I keep getting unparseable result. Does is have to do with the fact that I'm in "sheet summary"? I've tried is many different ways and now I'm stuck. Any help would be much appreciated. π
Best Answer
-
You are going to need to use a SUMIFS for each of the different checkbox columns and then add those SUMIFS together.
=SUMIFS([Sum Column]:[Sum Column], [1st Checkbox]:[1st Checkbox], @cell = 1) + SUMIFS([Sum Column]:[Sum Column], [2nd Checkbox]:[2nd Checkbox], @cell = 1)
Answers
-
You are going to need to use a SUMIFS for each of the different checkbox columns and then add those SUMIFS together.
=SUMIFS([Sum Column]:[Sum Column], [1st Checkbox]:[1st Checkbox], @cell = 1) + SUMIFS([Sum Column]:[Sum Column], [2nd Checkbox]:[2nd Checkbox], @cell = 1)
-
That worked! π
I utilize your answers all the time and really appreciate it!
Thank you Paul!
Help Article Resources
Categories
Check out the Formula Handbook template!