How do I tell Calc (or Excell) to display one figure in one case, or another figure if another case?
I need a formula that says "Look at cell B12. If it's less than 6, then display 1. If it's between 7 and 20, then display 1.5. If it's between 20 and 30 then display 2."
Is there a way to do this that I'm missing?
Garbo that's almost exactly what I tried, and Calc keeps coming back with #NAME?
For reference, this is what it looked like after I changed it from the example: =IF(I4="","",IF(I4<6,1,IF(AND(I4>6,I4<21),1.5,IF(AND(I4>19,I4<31),2))))
Eh, it didn't keep the whole thing...but you get the idea.