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.
=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.