I'm using IF statement to determine if a condition evaluates to Short (if value<4), Medium (if value between 4 and 9), or Long (if value =>10). The "Medium" statement gives me "FALSE" instead of "Medium". I'm sure I'm doing something wrong. Here is what I did and a sample results. Thanks for your help.
=IF(A1<4,"Short",IF(A1>=4<=9,"Medium",IF(A1>=10,"Long")))
-----------
LOS LOS1
4 FALSE
8 FALSE
10 Long
5 FALSE
3 Short
2 Short
5 FALSE
6 FALSE
6 FALSE
14 Long
11 Long
5 FALSE
6 FALSE
3 Short
3 Short
Bookmarks