I am trying to figure out something that I think Excel should be able to do. Cell A1 contains a value. I need cell B1 to display "1-30" if the value in A1 is less than/equal to 30, display "31-60" if cell A1 is between 31 and 60, and to display "61-90" if the value in A1 is between 61 and 90. I am not sure if I should use IF/THEN or conditional formatting or something else. Thanks for the help.
IF formulas seem very popular at the minute. If you pan down one message there is one virtually identical, anyhow...
=IF(A1=<30,"1-30",IF(A1=<61,"31-60",IF(A1<91,"61-90","Out of range")))
RegardsNick HodgeMicrosoft MVP, Excel Southampton, UK
Thanks! That worked beautifully. I ended up adding a few more criteria to it.