Hello
I have the following two formulas in a Microsoft Excel 2003 spreadsheet:
=IF(OR(B3=0,C3=0),"",SUMPRODUCT(--(LEFT(‘Places won'!$B$2:$B$574,LEN(B3)-5)=LEFT(B3,LEN(B3)-5)),--(RIGHT(‘Places won'!$B$2:$B$574,6)>=RIGHT(B3,6)),--((‘Places won'!$C$2:$C$574)=5000),--(RIGHT(‘Places won'!$B$2:$B$574,6)<=RIGHT($C3,6)),--((‘Places won'!$C$2:$C$574)=5000)))
=IF((SUMIF((‘Places won'!A2:A574),E1&TEXT(A6,"yy"),(‘Places won'!C2:C574)))>0,SUMIF((‘Places won'!A2:A574),E1&TEXT(A6,"yy"),(‘Places won'!C2:C574)),"")
I need to replace each reference of:
‘Places won'!C2:C574
To my named range which is “database”
I tried the following with and without apostrophes (‘) and brackets () but it doesn’t work?
=IF(OR(B3=0,C3=0),"",SUMPRODUCT(--(LEFT(‘Places won'!$B$2:$B$574,LEN(B3)-5)=LEFT(B3,LEN(B3)-5)),--(RIGHT(‘Places won'!$B$2:$B$574,6)>=RIGHT(B3,6)),--((database)=5000),--(RIGHT(‘Places won'!$B$2:$B$574,6)<=RIGHT($C3,6)),--((database)=5000)))
=IF((SUMIF((‘Places won'!A2:A574),E1&TEXT(A6,"yy"),(database)))>0,SUMIF((database),E1&TEXT(A6,"yy"),(database)),"")
Can any one help with the right code?
I have the following two formulas in a Microsoft Excel 2003 spreadsheet:
=IF(OR(B3=0,C3=0),"",SUMPRODUCT(--(LEFT(‘Places won'!$B$2:$B$574,LEN(B3)-5)=LEFT(B3,LEN(B3)-5)),--(RIGHT(‘Places won'!$B$2:$B$574,6)>=RIGHT(B3,6)),--((‘Places won'!$C$2:$C$574)=5000),--(RIGHT(‘Places won'!$B$2:$B$574,6)<=RIGHT($C3,6)),--((‘Places won'!$C$2:$C$574)=5000)))
=IF((SUMIF((‘Places won'!A2:A574),E1&TEXT(A6,"yy"),(‘Places won'!C2:C574)))>0,SUMIF((‘Places won'!A2:A574),E1&TEXT(A6,"yy"),(‘Places won'!C2:C574)),"")
I need to replace each reference of:
‘Places won'!C2:C574
To my named range which is “database”
I tried the following with and without apostrophes (‘) and brackets () but it doesn’t work?
=IF(OR(B3=0,C3=0),"",SUMPRODUCT(--(LEFT(‘Places won'!$B$2:$B$574,LEN(B3)-5)=LEFT(B3,LEN(B3)-5)),--(RIGHT(‘Places won'!$B$2:$B$574,6)>=RIGHT(B3,6)),--((database)=5000),--(RIGHT(‘Places won'!$B$2:$B$574,6)<=RIGHT($C3,6)),--((database)=5000)))
=IF((SUMIF((‘Places won'!A2:A574),E1&TEXT(A6,"yy"),(database)))>0,SUMIF((database),E1&TEXT(A6,"yy"),(database)),"")
Can any one help with the right code?