views:

115

answers:

1

AU-contains numbers from 0-20 AV-needs to have high, moderate, low; based on the number in AU

=>5 HIGH 3-4 MODERATE <3 LOW

Wrote this below, however I get #NAME? for the answer; so I know some part of it is wrong. Please help.

=IF(OR(AU>=5),"High",IF(OR(AU<=4.9>=3),"Moderate",IF(OR(AU<3),"Low")))

+2  A: 

Try this:

=IF(AU<3,"Low",IF(AU<5,"Moderate","High"))
Mike
Mike, Thank you very much. That worked. {Of course once I made the change that Jeff said to make as well.Working equation:=IF(AU46<3,"Low",IF(AU46<5,"Moderate","High"))
Excel-dummy
No problem. Well spotted Jeff, I had just assumed that `AU` was a named range.
Mike
Thanks. It's been a while since I've done anything in Excel, so I totally forgot about the ability to name ranges. Go figure.
Jeff Rupert