using search criteria with the IF function

mmansur04

New Member
Joined
Aug 8, 2014
Messages
5
So I have this function:

=SUM(IF(FREQUENCY(IF(A$7:A$45="Macys",MATCH(F$7:F$45,F$7:F$45,0)),ROW(A$7:A$45)-ROW(A$7)+1),1))

What this function does, is looks at a list in column A and counts the number of times "macys" appears, but will only count it once for every time "macys" coordinating job number is repeated.

before I arrived at this equation I was using:

=COUNTIF(A7:A45, "macy*")
this function basically did the same thing as the top function, except check for matching job numbers. What I love about this function is that it counts the number of times "macy" pops up, even if it is spelled "macys" or "macy's" or something like "macys minneapolis" all because I have the * at the end of the word.

What I need help with is being able to incorporate that same concept into the first formula so the word doesn't have to match exactly. ive tried using "macy*" in the first formula, but it just returns the value to 0 because it is searching for the EXACT same criteria.

thanks!
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
don't think that wildcard will work with that. You'd probably need a different formula. I'm not sure what you're trying to accomplish in conjunction with the coordinating job number. But you may try a countifs instead of countif.
COUNTIFS function - Excel
 
Upvote 0
Control+shift+enter, not just enter:
Rich (BB code):
=SUM(IF(FREQUENCY(IF(ISNUMBER(SEARCH("Macys",A$7:A$45)),
  IF(1-(F$7:F$45=""),MATCH(F$7:F$45,F$7:F$45,0))),ROW(A$7:A$45)-ROW(A$7)+1),1))
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,383
Members
448,955
Latest member
BatCoder

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top