IF EXACT Formula with multiple chains

boojooo

New Member
Joined
Nov 15, 2012
Messages
33
Hello,

I am attempting to do an IF/EXACT formula that contains two different values. Here is the formula that I've come up with, but it keeps returning a #N/A value:

=IF(EXACT(G2,"B"),"Btl"),IF(EXACT(G2,"b"),"btl","")
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
It is to do with your parenthesis; you closed it after "Btl" (Before the 2nd IF statement)

Try:
=IF(EXACT(G2,"B"),"Btl",IF(EXACT(G2,"b"),"btl",""))
 
Last edited:
Upvote 0
IF(condition, value if true, value if false)

Your second IF will never be executed since it's not part of the first IF

It should be

=IF(EXACT(G2,"B"),"Btl",IF(EXACT(G2,"b"),"btl",""))
 
Last edited:
Upvote 0
Thank you tyija1995 and special-k99, you're both right and that's exactly what I was look for!
 
Upvote 0
I see you now have a solution, but there are numerous ways of solving this which don't use as many nested function, e.g
Code:
=IF(UPPER(G2)="B",G2&"tl","")
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,378
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