IF formula not working properly

RRuiz

New Member
Joined
Jun 27, 2014
Messages
18
Hello,

I have a formula I have used on several different data sheets that is not working on this new sheet and I cannot not figure out why.

The following should be returning a 0% as Cell BH2118 dose have a "1" in the form but its acting like the 'IF(BH2118="1","0"' portion is not there.

=IF(I2118="","",IF(BH2118="1","0",SUM(K2118,AB2118)/100))

Any ideas on fixes?

Thank you
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Is it a numeric value of 1 or a text value of 1 in BH2118.
If it is numeric, you need to get rid of the double-quotes around the 1, i.e.
Code:
[U]=IF(I2118="","",IF(BH2118=1,0,SUM(K2118,AB2118)/100))[/U]
 
Upvote 0
You are welcome.

Yes, it make a difference. Everything between double-quotes are treated as Text. So you do not want numeric values between double-quotes.
 
Upvote 0

Forum statistics

Threads
1,215,507
Messages
6,125,212
Members
449,214
Latest member
mr_ordinaryboy

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