Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Help with IF Functions

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






  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,805
Default Help with IF Functions

=LOOKUP(C1,{1,6,12,21},{"Good","Better","Best","Aw esome"})

copy down

"jclark" wrote:

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






  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
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








  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Help with IF Functions

Put this formula in D1:

=IF(C1=21,"awesome",IF(C1=12,"best",IF(C1=6,"be tter","Good")))

Copy it down as far as required.

Hope this helps.

Pete

On Oct 21, 3:55*pm, jclark wrote:
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


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default Help with IF Functions

=CHOOSE(MATCH(C1,{1,6,12,21}),"Good","Better","Bes t","Awsome")


"jclark" wrote:

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






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Multiple functions, conditional functions HeatherBelle Excel Worksheet Functions 7 October 17th 08 03:57 PM
How to convert cell formula functions to code functions Adnan Excel Discussion (Misc queries) 1 October 1st 08 08:30 PM
efficiency: database functions vs. math functions vs. array formula nickname Excel Discussion (Misc queries) 2 July 14th 06 04:26 AM
Looking for a site with functions that substitute the ATP functions Franz Verga Excel Worksheet Functions 3 June 24th 06 04:30 AM
Nesting functions in the functions dialog box cs170a Excel Worksheet Functions 0 June 10th 05 10:36 PM


All times are GMT +1. The time now is 04:29 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"