IF formulas and partial text

brunette

Board Regular
Joined
Aug 19, 2003
Messages
97
Hi,

I'm pretty sure this is an easy thing but for the life of me I can't figure out how to get this to work...

I am trying the following formula in Excel 2010 to find a part of text in a cell and then, depending on whether it finds the text, return the corresponding values:

=IF(A1="*Total*";B1;0)

It should be pretty simple, right?

The problem is that even though cell A1's value is:- Item 1 Total, the formula consistently returns 0. However, If I do a straight up
=IF(A1="Item 1 Total";B1;0) it returns the value in cell B1 correctly.

What am I doing wrong?! I have thousands of lines with different item names, so doing it the latter way isn't feasible.

Ps:-just in case you're wondering, my regional settings are configured to require a semi-colon as separator, instead of just a comma.

Thanks in advance for your help!
Ana
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
I found a suitable workaround:-

=IF(ISNUMBER(SEARCH("Total";A1));B1;0) works. It's, IMHO, not as quick and easy and simple as what I originally wanted, but, hey, it works - I'm happy! :)
 
Upvote 0
I found a suitable workaround:-

=IF(ISNUMBER(SEARCH("Total";A1));B1;0) works. It's, IMHO, not as quick and easy and simple as what I originally wanted, but, hey, it works - I'm happy! :)
You could try this formula as well...

=IF(COUNTIF(A1;"*Total*");B1;0)
 
Upvote 0
What am I doing wrong?!
What you are doing wrong is thinking that an IF() function works with wildcards. It doesn't. The only way that your original formula would return the B1 value is if A1 conatined the exact text: "*Total*"
 
Upvote 0
I don't know why using the wildcard doesn't work with IF like that, but this how I do similar things - Just an FYI for next time :)

Code:
=IF(FIND("Total",A1,1),B1,0)
 
Upvote 0
I don't know why using the wildcard doesn't work with IF like that, but this how I do similar things - Just an FYI for next time :)

Code:
=IF(FIND("Total",A1,1),B1,0)

That won't ever return 0 - if the FIND fails, it returns a #VALUE ! error, not FALSE. Also, just to note, FIND is case sensitive, unlike SEARCH.
 
Upvote 0

Forum statistics

Threads
1,215,429
Messages
6,124,834
Members
449,192
Latest member
mcgeeaudrey

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