I am attempting to perform Array math on a dynamic range
My range named count is =OFFSET(Data!$A$2,0,1,COUNT(Data!C:C),1)
My range named nme is =OFFSET(Data!$A$2,0,2,COUNT(Data!C:C),1)
I want to compare every value in nme to a constant and then multipy the result times the count, and then summing the whole thing.
{=sum((“BOB” = NME)*cnt)}
This works fine using a standard named range, but not if I use a dynamic range as above.
Did I miss something or is that just the way it is? Thanks.