I've gone through the threads on this site and haven't found anything that could help me w/the sumproduct.
I created name ranges using the following formula in the "Refers to Box":
OFFSET('F'!$A$1,1,MATCH("Cost",'F'!$A$1:$DR$1,0)-1,5000)
the name for this one is FCost
OFFSET('F'!$A$1,1,MATCH("WW",'F'!$A$1:$DR$1,0)-1,5000)
the name for this one is FWW
OFFSET('F'!$A$1,1,MATCH("Event",'F'!$A$1:$DR$1,0)-1,5000)
the name for this one is FEST
The sumproduct formula (which is in a different sheet then the Name ranges created above) that I'm having trouble with is the following:
=SUMPRODUCT((--(FWW=B3)*(FCost)))
seems simple, right?
Well I get an N/A, but if I change this to a sumif formula =SUMIF(FWW,B3,FCost) it works just fine.
The reason for using the sumproduct is that I'll have 2 different criteria which should look like:
=SUMPRODUCT((FEST="Install")*(FWW=B3)*(FCost))
any help would be appreciated.
I created name ranges using the following formula in the "Refers to Box":
OFFSET('F'!$A$1,1,MATCH("Cost",'F'!$A$1:$DR$1,0)-1,5000)
the name for this one is FCost
OFFSET('F'!$A$1,1,MATCH("WW",'F'!$A$1:$DR$1,0)-1,5000)
the name for this one is FWW
OFFSET('F'!$A$1,1,MATCH("Event",'F'!$A$1:$DR$1,0)-1,5000)
the name for this one is FEST
The sumproduct formula (which is in a different sheet then the Name ranges created above) that I'm having trouble with is the following:
=SUMPRODUCT((--(FWW=B3)*(FCost)))
seems simple, right?
Well I get an N/A, but if I change this to a sumif formula =SUMIF(FWW,B3,FCost) it works just fine.
The reason for using the sumproduct is that I'll have 2 different criteria which should look like:
=SUMPRODUCT((FEST="Install")*(FWW=B3)*(FCost))
any help would be appreciated.