Mary S said:
I need nested IF functions
Not for this, you don't. Is there more to it?
I need an excel formula which claculates 'between' 95% and 100% i.e.
If( O2= between 95% and 100%, 1 x 2, 2 x 3)
Do you mean the strings "1x2" and "2x3", as in "one by two" and "two by
three"? Otherwise, why would you multiply 2 times 1?
And do you truly mean that O2 contains percentages? If so, are they truly
in the form 95% or 0.95, or are they in some other form (e.g. 95 or even
"95%")?
Making lots of assumptions, try:
=if(and(95%<=O2,O2<=100%), "1x2", "2x3")