Removing "Blank" Result from cell

MARIE15

New Member
Joined
Aug 23, 2022
Messages
5
Office Version
  1. 2016
Platform
  1. Windows
I am using a formula in which the results "low", "medium, or "high" will appear (in column U) based on the numerical value that is entered in another cell (in column T).

=IF(T3<>"",IF(T3<=59,"LOW",IF(T3<=79,"MEDIUM",IF(T3>=79,"HIGH",""))))

It works perfectly, however the word "FALSE" is shown in all the empty cells in column U, wherever data has not yet been entered in Column T.

I would like to have the cells in column U remain blank when data has not yet been entered, rather than having the word "FALSE" appear.

Any help would be greatly appreciated.
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Welcome to the Board!

You just forgot to address the FALSE argument of your initial IF.
Try:
Rich (BB code):
=IF(T3<>"",IF(T3<=59,"LOW",IF(T3<=79,"MEDIUM",IF(T3>=79,"HIGH",""))),"")
 
Upvote 0
Solution
You are welcome!

Whenever you get an unexpected "FALSE" with an IF formula, it means that you have a FALSE clause that has not been populated (so it defaults to FALSE).
 
Upvote 0
I knew that was the problem, but didn't now how to correct the formula. I tried so many different variations without success. Thank you again!
 
Upvote 0
You are welcome.

In these cases, it is often best to start off when a single IF, and then build upon that.

Or sometimes it makes sense to start the other way (i.e. what to do if it IS blank):
VBA Code:
=IF(T3="","",...)
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,552
Members
449,088
Latest member
davidcom

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