Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 19
Default Won't give correct answer

=IF(Q13="","",IF(Q13<0.1,(good),IF(Q130.1<0.2,(FA IR),(POOR))))

Cell Q13 = .33 but what shows up in this cell is #NAME? What am
I doing wrong?
--
Loren
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Won't give correct answer

good, FAIR and POOR must be enclosed in double quotes.

"good" etc.


Gord Dibben MS Excel MVP

On Fri, 5 Jan 2007 10:34:00 -0800, Loren
wrote:

=IF(Q13="","",IF(Q13<0.1,(good),IF(Q130.1<0.2,(F AIR),(POOR))))

Cell Q13 = .33 but what shows up in this cell is #NAME? What am
I doing wrong?


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 419
Default Won't give correct answer

Loren,

You need to do 2 separate comparisons, you can't do both in one expression.

Try changing this:
=IF(Q13="","",IF(Q13<0.1,(good),IF(Q130.1<0.2,(FA IR),(POOR))))

To this:
=IF(Q13="","",IF(Q13<0.1,(good),IF(AND(Q130.1,Q13 <0.2),(FAIR),(POOR))))

Also keep in mind that you are including values below 10% and values between
10% and 20%, but you do not include values of exactly 10%. With this
formula, 10% will return POOR while 9.999999% will return GOOD and
10.000000001% will return FAIR.

you might consider changing either your first < or to <= and =
respectively (only change one, not both).

I hope this helps,

Conan Kelly




"Loren" wrote in message
...
=IF(Q13="","",IF(Q13<0.1,(good),IF(Q130.1<0.2,(FA IR),(POOR))))

Cell Q13 = .33 but what shows up in this cell is #NAME? What
am
I doing wrong?
--
Loren



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 964
Default Won't give correct answer

Your text values need to be enclosed in "quotes". Also, the Q130.1<0.2
should just be Q13<0.2 since this would only be evaluated if Q13<0.1 is
FALSE. Try this:

=IF(Q13="","",IF(Q13<0.1,"(good)",IF(Q13<0.2,"(FAI R)","(POOR)")))

HTH,
Elkar

"Loren" wrote:

=IF(Q13="","",IF(Q13<0.1,(good),IF(Q130.1<0.2,(FA IR),(POOR))))

Cell Q13 = .33 but what shows up in this cell is #NAME? What am
I doing wrong?
--
Loren

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 419
Default Won't give correct answer

Oops!

Gord Dibben is correct. You need to enclose text that you want to display
in double quotes.

Try this:

=IF(Q13="","",IF(Q13<=0.1,"good",IF(AND(Q130.1,Q1 3<0.2),"FAIR","POOR")))

(Notice that I also included values that are exactly 10%--Everything less
than or equal to 10% will return GOOD)

Sorry for the mistake,

Conan


"Conan Kelly" wrote in message
...
Loren,

You need to do 2 separate comparisons, you can't do both in one
expression.

Try changing this:
=IF(Q13="","",IF(Q13<0.1,(good),IF(Q130.1<0.2,(FA IR),(POOR))))

To this:
=IF(Q13="","",IF(Q13<0.1,(good),IF(AND(Q130.1,Q13 <0.2),(FAIR),(POOR))))

Also keep in mind that you are including values below 10% and values
between 10% and 20%, but you do not include values of exactly 10%. With
this formula, 10% will return POOR while 9.999999% will return GOOD and
10.000000001% will return FAIR.

you might consider changing either your first < or to <= and =
respectively (only change one, not both).

I hope this helps,

Conan Kelly




"Loren" wrote in message
...
=IF(Q13="","",IF(Q13<0.1,(good),IF(Q130.1<0.2,(FA IR),(POOR))))

Cell Q13 = .33 but what shows up in this cell is #NAME? What
am
I doing wrong?
--
Loren





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
Finding Correct Answer caldog Excel Worksheet Functions 0 November 25th 06 07:58 PM
Not getting the correct averages. lana1916 Excel Discussion (Misc queries) 2 January 6th 06 04:12 PM
how do i get my spreadsheet to give me tank gage amounts. tankerman Excel Worksheet Functions 3 January 5th 06 04:35 PM
Formula correct, answer wrong TJAC Excel Discussion (Misc queries) 2 January 3rd 06 06:15 PM
How can I turn auto correct on or off for one column only? jacskier Excel Worksheet Functions 3 June 13th 05 04:55 PM


All times are GMT +1. The time now is 06:26 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"