Hiding FALSE in nested if formulas HELP!

NJS1982

Board Regular
Joined
Sep 24, 2009
Messages
183
Office Version
  1. 365
Platform
  1. Windows
I have a cell with 7 nested if's in it. I want the cell to be blank is the cell previous to it is blank.

This is my formula (without spaces):

= IF (R40 < $D$20-2,$B$19, IF (R40 < $D$21-2,$B$20, IF (R40 < $D$22-2,$B$21, IF (R40 < $D$23-2,$B$22, IF (R40 < $D$24-2,$B$23, IF (R40 < $D$25-2,$B$24, IF (R40 < $D$2-2,$B$25, IF (R40 < $D$3-2,$B$2))))))))

I know how to do it with one IF formula, using "" at the end, but doesn't seem to work with this forumla?!?
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
NJS1982 - I think you're really close. Try this . . .
Code:
= IF (R40 < $D$20-2,$B$19, IF (R40 < $D$21-2,$B$20, 
IF (R40 < $D$22-2,$B$21, IF (R40 < $D$23-2,$B$22, 
IF (R40 < $D$24-2,$B$23, IF (R40 < $D$25-2,$B$24, 
IF (R40 < $D$2-2,$B$25, IF (R40 < $D$3-2,$B$2,""))))))))
 
Upvote 0

Forum statistics

Threads
1,214,971
Messages
6,122,521
Members
449,088
Latest member
RandomExceller01

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