Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Is there a more compact way of writing the formula below, where comparison
cells contain dates and text? =SUMPRODUCT((Product="ABC")*(RawData!$E1:$E10000= CalculatedData!B2)*(RawData!$E1:$E10000<=Calculate dData!B3)*(RawData!$G$1:$G$10000 <B15)*(RawData!$G$1:$G$10000 <B16)*(RawData!$G$1:$G$10000 <B17)*(RawData!$G$1:$G$10000 <B18)*(RawData!$G$1:$G$10000 <B19)*(RawData!$G$1:$G$10000 <B20)*(RawData!$G$1:$G$10000 <B21)*(RawData!$G$1:$G$10000 <B22)*(RawData!$G$1:$G$10000 <B23)*(RawData!$G$1:$G$10000 <B24)*(RawData!$G$1:$G$10000 <B25)*(RawData!$G$1:$G$10000 <B26)*(RawData!$G$1:$G$10000 <B27)*(RawData!$G$1:$G$10000 <B28)) |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Replace all the (RawData!$G$1:$G$10000 <B15 to B28) with the following:
(NOT(ISNUMBER(MATCH(RawData!$G$1:$G$10000,B15:B28, 0)))) I haven't test, but I think it will work "adimar" wrote: Is there a more compact way of writing the formula below, where comparison cells contain dates and text? =SUMPRODUCT((Product="ABC")*(RawData!$E1:$E10000= CalculatedData!B2)*(RawData!$E1:$E10000<=Calculate dData!B3)*(RawData!$G$1:$G$10000 <B15)*(RawData!$G$1:$G$10000 <B16)*(RawData!$G$1:$G$10000 <B17)*(RawData!$G$1:$G$10000 <B18)*(RawData!$G$1:$G$10000 <B19)*(RawData!$G$1:$G$10000 <B20)*(RawData!$G$1:$G$10000 <B21)*(RawData!$G$1:$G$10000 <B22)*(RawData!$G$1:$G$10000 <B23)*(RawData!$G$1:$G$10000 <B24)*(RawData!$G$1:$G$10000 <B25)*(RawData!$G$1:$G$10000 <B26)*(RawData!$G$1:$G$10000 <B27)*(RawData!$G$1:$G$10000 <B28)) |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() It certainly worked :) Thank you. "Teethless mama" wrote: Replace all the (RawData!$G$1:$G$10000 <B15 to B28) with the following: (NOT(ISNUMBER(MATCH(RawData!$G$1:$G$10000,B15:B28, 0)))) I haven't test, but I think it will work "adimar" wrote: Is there a more compact way of writing the formula below, where comparison cells contain dates and text? =SUMPRODUCT((Product="ABC")*(RawData!$E1:$E10000= CalculatedData!B2)*(RawData!$E1:$E10000<=Calculate dData!B3)*(RawData!$G$1:$G$10000 <B15)*(RawData!$G$1:$G$10000 <B16)*(RawData!$G$1:$G$10000 <B17)*(RawData!$G$1:$G$10000 <B18)*(RawData!$G$1:$G$10000 <B19)*(RawData!$G$1:$G$10000 <B20)*(RawData!$G$1:$G$10000 <B21)*(RawData!$G$1:$G$10000 <B22)*(RawData!$G$1:$G$10000 <B23)*(RawData!$G$1:$G$10000 <B24)*(RawData!$G$1:$G$10000 <B25)*(RawData!$G$1:$G$10000 <B26)*(RawData!$G$1:$G$10000 <B27)*(RawData!$G$1:$G$10000 <B28)) |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
And
=not(isnumber(... could be =iserror(... too. Teethless mama wrote: Replace all the (RawData!$G$1:$G$10000 <B15 to B28) with the following: (NOT(ISNUMBER(MATCH(RawData!$G$1:$G$10000,B15:B28, 0)))) I haven't test, but I think it will work "adimar" wrote: Is there a more compact way of writing the formula below, where comparison cells contain dates and text? =SUMPRODUCT((Product="ABC")*(RawData!$E1:$E10000= CalculatedData!B2)*(RawData!$E1:$E10000<=Calculate dData!B3)*(RawData!$G$1:$G$10000 <B15)*(RawData!$G$1:$G$10000 <B16)*(RawData!$G$1:$G$10000 <B17)*(RawData!$G$1:$G$10000 <B18)*(RawData!$G$1:$G$10000 <B19)*(RawData!$G$1:$G$10000 <B20)*(RawData!$G$1:$G$10000 <B21)*(RawData!$G$1:$G$10000 <B22)*(RawData!$G$1:$G$10000 <B23)*(RawData!$G$1:$G$10000 <B24)*(RawData!$G$1:$G$10000 <B25)*(RawData!$G$1:$G$10000 <B26)*(RawData!$G$1:$G$10000 <B27)*(RawData!$G$1:$G$10000 <B28)) -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
And
=not(isnumber(... could be =iserror(... Or, ISNA(... -- Biff Microsoft Excel MVP "Dave Peterson" wrote in message ... And =not(isnumber(... could be =iserror(... too. Teethless mama wrote: Replace all the (RawData!$G$1:$G$10000 <B15 to B28) with the following: (NOT(ISNUMBER(MATCH(RawData!$G$1:$G$10000,B15:B28, 0)))) I haven't test, but I think it will work "adimar" wrote: Is there a more compact way of writing the formula below, where comparison cells contain dates and text? =SUMPRODUCT((Product="ABC")*(RawData!$E1:$E10000= CalculatedData!B2)*(RawData!$E1:$E10000<=Calculate dData!B3)*(RawData!$G$1:$G$10000 <B15)*(RawData!$G$1:$G$10000 <B16)*(RawData!$G$1:$G$10000 <B17)*(RawData!$G$1:$G$10000 <B18)*(RawData!$G$1:$G$10000 <B19)*(RawData!$G$1:$G$10000 <B20)*(RawData!$G$1:$G$10000 <B21)*(RawData!$G$1:$G$10000 <B22)*(RawData!$G$1:$G$10000 <B23)*(RawData!$G$1:$G$10000 <B24)*(RawData!$G$1:$G$10000 <B25)*(RawData!$G$1:$G$10000 <B26)*(RawData!$G$1:$G$10000 <B27)*(RawData!$G$1:$G$10000 <B28)) -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
SUMPRODUCT w/ 3 criteria | Excel Worksheet Functions | |||
sumproduct and IF criteria?? | Excel Discussion (Misc queries) | |||
SUMPRODUCT - 2 Criteria | Excel Worksheet Functions | |||
Sumproduct 4 criteria | Excel Worksheet Functions | |||
Sumproduct with two criteria | Excel Worksheet Functions |