Formula return False

chris007

Board Regular
Joined
Jun 27, 2011
Messages
82
Hello,
Could I have some assitanc please. I have written this formula to return values under certain conditions, however if 0 apears in cell CK3 the word False apears in cell CN3 where I have the formula. How can i stop the False from appearing? if CK has a value other than "0" the correct information is displayed in cell CN3

Formula as I have it at present

=IF(CK3="",0,IF(CK3>=300,'Look Up Table'!$M$10,IF(CK3>=90,'Look Up Table'!$M$11,IF(CK3>=30,'Look Up Table'!$M$12,IF(CK3>=11,'Look Up Table'!$M$13,IF(CK3>=0.03,'Look Up Table'!$M$14))))))

Thanks you
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Maybe this (in blue):

=IF(CK3="",0,IF(CK3>=300,'Look Up Table'!$M$10,IF(CK3>=90,'Look Up Table'!$M$11,IF(CK3>=30,'Look Up Table'!$M$12,IF(CK3>=11,'Look Up Table'!$M$13,IF(CK3>=0.03,'Look Up Table'!$M$14,0))))))

Markmzz
 
Upvote 0
Guys Thanks,
the placement of the "0" certainly gets rid of teh False, however now it shows 0.00, even with the cell formated to txt it shows 0.

sorry to be a pain how can i get the cell to be blank if cell CK3 shows 0

Thanks
 
Upvote 0
Try
=IF(CK3="",0,IF(CK3>=300,'Look Up Table'!$M$10,IF(CK3>=90,'Look Up Table'!$M$11,IF(CK3>=30,'Look Up Table'!$M$12,IF(CK3>=11,'Look Up Table'!$M$13,IF(CK3>=0.03,'Look Up Table'!$M$14,,""))))))
 
Upvote 0
Guys,
Thank you for your help the ,"" did the trick i don't know why I did not do this, sorry for the hasle and appreciate your assistance

Regards
Chris007
 
Upvote 0

Forum statistics

Threads
1,224,504
Messages
6,179,142
Members
452,892
Latest member
JUSTOUTOFMYREACH

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