View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bernard Liengme Bernard Liengme is offline
external usenet poster
 
Posts: 4,393
Default Help with IF Functions

Try
=IF(C1<6,"Good",IF(C1<12,"Better",IF(C1<21,"Best", "Awesome")))

This looks so much like a homework assignment! You should try to make an
alternative formula that begins
=IF(C120.......
best wishes
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"jclark" wrote in message
...
Hello,
I'm looking for some help with If functions and displaying different text
when the results are with in a range. What would a formula look like in
col
D

A B C D
r1 1 6 (a1+b1) 7 better
r2 20 5 (a2+b2) 25 awsome
r3 0 1 (a3+b3) 1 Good

range is 1-5=Good;6-11=better;12-20=best;21-25=awsome

Thanks,
Hope this was clear enough
Jim C