This shorter formula also works:
=SUMPRODUCT(ISNUMBER(($B$2:$B$525=A4001)*MATCH
($E$2:$E$525,{"Local Loop","Long Haul","Loop A","loop z"},0)*
MATCH($M$2:$M$525,{"live","Pending - Cancellation"},0))*$BX$2:$BX$525)
Note: You could also put the list options in cell ranges and refer to them...
Example:
With
A3:A6 containing this list
Local Loop
Long Haul
Loop A
loop z
and
A8:A9 containing this list
live
Pending - Cancellation
Use this formula:
=SUMPRODUCT(ISNUMBER(($B$2:$B$525=A4001)*MATCH($E$2:$E$525,A3:A6,0)*
MATCH($M$2:$M$525,A8:A9,0))*$BX$2:$BX$525)
Does that help?
Bookmarks