SUMIF where CRITERIA is looking for a string occurence in the value,not the whole value

F

Finny

NOT(ISERROR(SEARCH("DLL",C1)))
is how I evaluate a single cell
I want to sum all adjacent values in D:D if the value in C:C has DLL
anywhere in the text.

I know I could paste this formula in B:B and change the SUMIF to
(B:B,TRUE,DD) but can I do it with a fancy SUMIF without the extra
column?

I am stumped and searched to no avail for this kind of question being
asked in the forums.

Anyone know if this is possible? I have a sense it isn't but can't
find the issue directly addressed anywhere.

Thanks
 
P

Peo Sjoblom

=SUMIF(C:C,"*DLL*",D:D)


you can use wildcards in sumif

you might want to insert a space as well if DLL is separated by spaces


=SUMIF(C:C,"* DLL *",D:D)



--


Regards,


Peo Sjoblom
 
F

Finny

=SUMIF(C:C,"*DLL*",D:D)

you can use wildcards in sumif

you might want to insert a space as well if DLL is separated by spaces

=SUMIF(C:C,"* DLL *",D:D)

--

Regards,

Peo Sjoblom

thanks! I'll try that
 

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