I’m trying to count number of occurences of a value based on 3 conditions, each condition being dependant on the previous. Here’s what I have:
{=SUM(IF((range1=”literal value”)*(range2=”literal value”)*(range3=”literal value”),1,0))}
The above formula works great and gives me the correct number of occurences. However, for maintenance purposes, I can’t use the “literal value”, but instead need to point to a cell reference for each of the 3 conditions. When I change the literal value to a cell reference, the formula returns a 0 instead of the correct number.
Any idea why this formula won’t work with a cell reference?