Forum Discussion
Nested IF formula in Excel 365
- Apr 22, 2019
please see screenshot and file attached.
The formula that I used is an array formula. To make the formula to work, you need to do CTRL+SHIFT+ENTER after you finish writing it or after you edit it in the formula bar. The formula will get curly brackets at the beginning and ending after you hit those three keys.
Good luck!
DanGreene , by the way, expressions like
IF(I5="HIGH", "T", "T")
have no sense, it always returns "T" independently on what do you have in I5
Sergei,
Looking at the example:
=IF (G5="LOW" and H5="LOW"), then IF (I5="LOW", "T", IF(I5="HIGH", "T", "T"))
I have IF(I5="HIGH", "T", "T")) listed this way because there is a third value of "Moderate" that could be in the Cell I5 which should return a value of "T" as well.
thank you
dan
- SergeiBaklanApr 22, 2019Diamond Contributor
Dan, sorry, but I didn't catch. The expression in second part
=IF(I5="LOW","T",IF(I5="HIGH","T","T"))
is equal to
= "T"
will it be in I5 "MODERATE", "LOW" or any other value