
Originally Posted by
David Brown
I know that SUMPRODUCT requires all arrays to be the same size
That's not strictly true.
It seems you're looking to conduct an OR based test re: F9 and then apply against some matrices
=SUMPRODUCT((($F$9:$F$12="VDSL")+($F$9:$F$12="GPON")+($F$9:$F$12="PTP"))*$AG$9:$AO$12*(1-$AS$9:$BA$12))
or
=SUMPRODUCT(ISNUMBER(MATCH($F$9:$F$12,{"VDSL","GPON","PTP"},0))*$AG$9:$AO$12*(1-$AS$9:$BA$12))
the latter approach is useful if you have a decent number of permissible values.
For more info. on SUMPRODUCT see the link in my sig. to Bob Phillips' white paper.
Bookmarks