Wildcard in Nested functions

G

Guest

Need to count the number of occurences.
When using the wildcard always returns a 0.
Can someone please help.
=SUM(COUNT(IF('RTM Log'!B2:B141=1)*('RTM Log'!C2:C141="Open")*('RTM
Log'!D2:D141="*EASE Dev*"),1)),(COUNT(IF('RTM Log'!B2:B141=1)*('RTM
Log'!C2:C141="Re-open")*('RTM Log'!D2:D141="*EASE Dev*"),1)))
 
J

Jason Morin

Unfortunately you can't use wildcards that way. Try the
ISNUMBER-SEARCH approach. I re-worked your formula to be:

=SUM(('RTM Log'!B2:B141=1)*('RTM Log'!C2:C141={"Open","Re-
open"})*ISNUMBER(SEARCH("ease dev",'RTM Log'!D2:D141)))

Array-entered (press ctrl + shift + enter).

HTH
Jason
Atlanta, GA
 
G

Guest

I am sorry that did not work. It still returned a 0. Do you have any other
ideas? Thanks for the help.
 

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