I'm trying to display a sum of the column Total Funds Available when Status = Apps Open, and Value Score = 5. Here is the formula I have:
=SUMIFS([Total Funds Available]:[Total Funds Available], Status:Status, ="Apps Open", [Value Score]:[Value Score], ="5")
There are rows that meet these conditions and should display a total, but no matter what I do, I'm getting a result of 0. I tried it without the Value Score portion and it worked, so something is breaking down there. Value Score is a column formula that averages several different columns and is set to round to the nearest multiple of 0.5. I tried putting VALUE() around the column formula and that didn't work. I also tried creating a helper column for =VALUE([Value Score]@row ) and putting that in the SUMIFS formula instead, and that didn't work either.
What am I missing? Is there some reason SUMIFS doesn't work when referencing a column formula? What else can I try?