Trying to combine an ISBLANK function with a Nested string IF formula

Florida1510

New Member
Joined
Mar 13, 2020
Messages
35
Office Version
  1. 2010
Platform
  1. Windows
Folks,

I need some education for some reason I can get the ISBLAN function to work with my Nested string IF formula. I need to be able to have the formula in the cell preloaded but the need the results to show nothing. Right now without the ISBLANK the field populates with a 1. Any help would be really appreciated. Thanks in advance.

Current formula that gives me the "1" - =IF(F27<=7,"1",IF(AND(F27>7,F27<=14),"2",IF(AND(F27>14,F27<=21),"3","4")))
Formula that I'm trying to get to work to show the blank - =IF(ISBLANK(F27),"",IF(AND(F27<=7,"1",IF(AND(F27>7,F27<=14),"2",IF(AND(F27>14,F27<=21),"3","4"))))
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Hi & welcome to MrExcel.
How about
=IF(F27="","",IF(F27<=7,"1",IF(F27<=14,"2",IF(F27<=21,"3","4"))))
 
Upvote 0
Thank you so much I truly appreciate the assistance here you made my day. Thanks again!!!!!!!
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,932
Messages
6,122,331
Members
449,077
Latest member
jmsotelo

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