Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hello,
This SUMPRODUCT won't work with the wildcard * when I tried to count all the 70222A, B, C, D and E under the "calibrated" condition. Please help. =SUMPRODUCT(('Q3'!E12:E153="Calibrated")*('Q3'!G12 :G153="70222*")) |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Possible alternative:
=SUMPRODUCT(('Q3'!E12:E153="Calibrated")*(ISNUMBER (SEARCH("70222*",'Q3'!G12:G153)))) -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "Tmt" wrote: Hello, This SUMPRODUCT won't work with the wildcard * when I tried to count all the 70222A, B, C, D and E under the "calibrated" condition. Please help. =SUMPRODUCT(('Q3'!E12:E153="Calibrated")*('Q3'!G12 :G153="70222*")) |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This helps out really well. Thanks all that've responded to my request.
tmtu "Luke M" wrote: Possible alternative: =SUMPRODUCT(('Q3'!E12:E153="Calibrated")*(ISNUMBER (SEARCH("70222*",'Q3'!G12:G153)))) -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "Tmt" wrote: Hello, This SUMPRODUCT won't work with the wildcard * when I tried to count all the 70222A, B, C, D and E under the "calibrated" condition. Please help. =SUMPRODUCT(('Q3'!E12:E153="Calibrated")*('Q3'!G12 :G153="70222*")) |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In article ,
Tmt wrote: =SUMPRODUCT(('Q3'!E12:E153="Calibrated")*('Q3'!G12 :G153="70222*")) Try... =SUMPRODUCT(--('Q3'!E12:E153="Calibrated"),--(LEFT('Q3'!G12:G153,5)="7022 2")) -- Domenic Microsoft Excel MVP www.xl-central.com Your Quick Reference to Excel Solutions |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try
=SUMPRODUCT(('Q3'!E12:E153="Calibrated")*(LEFT('Q3 '!G12:G153,5)="70222")) If this post helps click Yes --------------- Jacob Skaria "Tmt" wrote: Hello, This SUMPRODUCT won't work with the wildcard * when I tried to count all the 70222A, B, C, D and E under the "calibrated" condition. Please help. =SUMPRODUCT(('Q3'!E12:E153="Calibrated")*('Q3'!G12 :G153="70222*")) |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
try left('Q3'!G12:G153,5)="70222"
-- Don Guillett Microsoft MVP Excel SalesAid Software "Tmt" wrote in message ... Hello, This SUMPRODUCT won't work with the wildcard * when I tried to count all the 70222A, B, C, D and E under the "calibrated" condition. Please help. =SUMPRODUCT(('Q3'!E12:E153="Calibrated")*('Q3'!G12 :G153="70222*")) |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUMPRODUCT(('Q3'!E12:E153="Calibrated")*('Q3'!G12 :G153=70222{"A","B","C","D","E"}))
"Tmt" wrote: Hello, This SUMPRODUCT won't work with the wildcard * when I tried to count all the 70222A, B, C, D and E under the "calibrated" condition. Please help. =SUMPRODUCT(('Q3'!E12:E153="Calibrated")*('Q3'!G12 :G153="70222*")) |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
correction:
=SUMPRODUCT(('Q3'!E12:E153="Calibrated")*('Q3'!G12 :G153=70222&{"A","B","C","D","E"})) "Teethless mama" wrote: =SUMPRODUCT(('Q3'!E12:E153="Calibrated")*('Q3'!G12 :G153=70222{"A","B","C","D","E"})) "Tmt" wrote: Hello, This SUMPRODUCT won't work with the wildcard * when I tried to count all the 70222A, B, C, D and E under the "calibrated" condition. Please help. =SUMPRODUCT(('Q3'!E12:E153="Calibrated")*('Q3'!G12 :G153="70222*")) |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Well, if you had checked your post on 28th August you would have had
your answer 3 days ago. Pete On Aug 31, 3:51*pm, Tmt wrote: Hello, This SUMPRODUCT won't work with the wildcard * when I tried to count all the 70222A, B, C, D and E under the "calibrated" condition. Please help. =SUMPRODUCT(('Q3'!E12:E153="Calibrated")*('Q3'!G12 :G153="70222*")) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Using a wild card in SUMPRODUCT | Excel Worksheet Functions | |||
how do I use wild card in SUMPRODUCT formula? | Excel Worksheet Functions | |||
Using wild card in IF formula | Excel Discussion (Misc queries) | |||
wild card in sumproduct | Excel Worksheet Functions | |||
sumproduct with a search and wild card | Excel Discussion (Misc queries) |