Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22
Default IF FUnctions that produce TEXT results

I have a list of grades that I need a formula to provide the results for
better immediate actions.
Results that shows:
If results is | Comment
1 Keep it up
2 Good
3 Require Monitoring
4 Require Coaching
5-6 Employee P-File and Close Coaching
above 6 Immediate Action, P-File and Coaching

I uses the following formula, but it does not work as it still shows as
Require monitoring no matter what the result is.

=IF(B12=3,"Require Monitoring",(IF(B12=4,"Require
Coaching",(IF(B12=5,"Employee P-File & Coaching",IF(B126,"Immediate
Action_P-File_Coaching","Require Monitoring"))))))


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default IF FUnctions that produce TEXT results

Alternate solution using LOOKUP
=LOOKUP(B12,{1,2,3,4,5,7},{"Keep it up","Good","Require Monitoring","Require
Coaching","Employee P-File and Close Coaching"," Immediate Action, P-File and
Coaching"})


If this post helps click Yes
---------------
Jacob Skaria


"Jafferi" wrote:

I have a list of grades that I need a formula to provide the results for
better immediate actions.
Results that shows:
If results is | Comment
1 Keep it up
2 Good
3 Require Monitoring
4 Require Coaching
5-6 Employee P-File and Close Coaching
above 6 Immediate Action, P-File and Coaching

I uses the following formula, but it does not work as it still shows as
Require monitoring no matter what the result is.

=IF(B12=3,"Require Monitoring",(IF(B12=4,"Require
Coaching",(IF(B12=5,"Employee P-File & Coaching",IF(B126,"Immediate
Action_P-File_Coaching","Require Monitoring"))))))


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default IF FUnctions that produce TEXT results

The problem with your formula is that if B12 is 4 that satisfies your first
condition itself...So returns Require Monitoring..

Try this.. The conditions are placed in a sequence...

=IF(B126,"Immediate Action, P-File and Coaching",IF(B124,"Employee P-File
and Close Coaching",IF(B12=4,"Require Coaching",IF(B12=3,"Require
Monitoring",IF(B12=2,"Good",IF(B12=1,"Keep it up",""))))))
--
If this post helps click Yes
---------------
Jacob Skaria


"Jafferi" wrote:

I have a list of grades that I need a formula to provide the results for
better immediate actions.
Results that shows:
If results is | Comment
1 Keep it up
2 Good
3 Require Monitoring
4 Require Coaching
5-6 Employee P-File and Close Coaching
above 6 Immediate Action, P-File and Coaching

I uses the following formula, but it does not work as it still shows as
Require monitoring no matter what the result is.

=IF(B12=3,"Require Monitoring",(IF(B12=4,"Require
Coaching",(IF(B12=5,"Employee P-File & Coaching",IF(B126,"Immediate
Action_P-File_Coaching","Require Monitoring"))))))


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default IF FUnctions that produce TEXT results

Create a 2 column list with the number in the left column and the text in
the right column:

...........F..........G
1.......1......Keep it up
2.......2......Good
3.......3......Require Monitoring
4.......4......Require Coaching
5.......5......Employee P-File and Close Coaching
6.......7......Immediate Action, P-File and Coaching

Then use this formula:

=IF(N(B12),VLOOKUP(B12,F1:G6,2),"")

--
Biff
Microsoft Excel MVP


"Jafferi" wrote in message
...
I have a list of grades that I need a formula to provide the results for
better immediate actions.
Results that shows:
If results is | Comment
1 Keep it up
2 Good
3 Require Monitoring
4 Require Coaching
5-6 Employee P-File and Close Coaching
above 6 Immediate Action, P-File and Coaching

I uses the following formula, but it does not work as it still shows as
Require monitoring no matter what the result is.

=IF(B12=3,"Require Monitoring",(IF(B12=4,"Require
Coaching",(IF(B12=5,"Employee P-File & Coaching",IF(B126,"Immediate
Action_P-File_Coaching","Require Monitoring"))))))




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
Parseing to produce text only Mick Barry Excel Worksheet Functions 5 October 17th 07 07:19 AM
can excel produce text in a given cell as a result of a boolean operation? Richard Erlacher Excel Discussion (Misc queries) 5 October 26th 06 09:39 PM
produce a formulate to produce assigned seats for dinner DavidJoss Excel Worksheet Functions 0 October 4th 05 02:29 AM
How to produce comma-delimited and quoted text file from Excel? Roger Kenner Excel Discussion (Misc queries) 1 September 15th 05 07:19 PM
Search Range for Criteria in given cell and produce results RFreeman12 Excel Discussion (Misc queries) 3 June 27th 05 09:23 PM


All times are GMT +1. The time now is 05:48 AM.

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"