I'm trying to calculate a number of potential outputs in Excel, which I had working - but then I wanted to add a NULL output if the cell contained 0
.
Currently, I'm trying to provide the following output for one cell, based on data in a cell to the left:
If the figure is lower than 3% it'll spit out "Low"
If it's between 3 & 5%, it'll say "Medium"
And if it's more than 5%, it'll say "High"
I've managed to get the following to work:
=IF(C18>5%,"High",IF(C18<3%,"Low",IF(AND(C18>=3%,C18<=5%),"Medium")))
But now I want to add in a null volume for if the box doesn't contain a value. I tried:
=IF(C18>5%,"High",IF(C18<3%,"Low",IF(AND(C18>=3%,C18<=5%),"Medium",IF(C14=0,"Null"))))
but it won't work, and I'm stumped to what I can do to fix it. I had added in another "IF(AND" for "Low", but that threw things off completely.