wild card in SUMPRODUCT formula

T

Tmt

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*"))
 
L

Luke M

Possible alternative:

=SUMPRODUCT(('Q3'!E12:E153="Calibrated")*(ISNUMBER(SEARCH("70222*",'Q3'!G12:G153))))
 
D

Domenic

Tmt said:
=SUMPRODUCT(('Q3'!E12:E153="Calibrated")*('Q3'!G12:G153="70222*"))


Try...

=SUMPRODUCT(--('Q3'!E12:E153="Calibrated"),--(LEFT('Q3'!G12:G153,5)="7022
2"))
 
J

Jacob Skaria

Try

=SUMPRODUCT(('Q3'!E12:E153="Calibrated")*(LEFT('Q3'!G12:G153,5)="70222"))

If this post helps click Yes
 
T

Teethless mama

correction
=SUMPRODUCT(('Q3'!E12:E153="Calibrated")*('Q3'!G12:G153=70222&{"A","B","C","D","E"}))
 
P

Pete_UK

Well, if you had checked your post on 28th August you would have had
your answer 3 days ago.

Pete
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top