#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default Wrong Answer

I'm putting this function in cell S13:

=IF(Q13="","",IF(Q13<0.1,good,IF(Q130.1<0.2,FAIR, POOR)))
I want GOOD for anything from 0 to 10%, FAIR for anything over 10% up to
20% and POOR for anything above 20%. What am I doing wrong?

No matter what I put in cell Q13, what shows up in cell S13 is - #NAME
- Why?
--
Loren
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,939
Default Wrong Answer

The output messages need to be enclosed in quotes...

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

--
HTH...

Jim Thomlinson


"Loren" wrote:

I'm putting this function in cell S13:

=IF(Q13="","",IF(Q13<0.1,good,IF(Q130.1<0.2,FAIR, POOR)))
I want GOOD for anything from 0 to 10%, FAIR for anything over 10% up to
20% and POOR for anything above 20%. What am I doing wrong?

No matter what I put in cell Q13, what shows up in cell S13 is - #NAME
- Why?
--
Loren

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 964
Default Wrong Answer

Try this:

=IF(Q13="","",IF(Q13<0.1,"GOOD",IF(Q13<0.2,"FAIR", "POOR")))

Text needs to be enclosed in "quotes", otherwise, Excel will look for named
ranges called GOOD, FAIR and POOR. Also, on your 3rd IF statement, you don't
need to specify Q13 0.1 since this IF statement is only reached if Q31 is
not less than 0.1.

HTH,
Elkar


"Loren" wrote:

I'm putting this function in cell S13:

=IF(Q13="","",IF(Q13<0.1,good,IF(Q130.1<0.2,FAIR, POOR)))
I want GOOD for anything from 0 to 10%, FAIR for anything over 10% up to
20% and POOR for anything above 20%. What am I doing wrong?

No matter what I put in cell Q13, what shows up in cell S13 is - #NAME
- Why?
--
Loren

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,574
Default Wrong Answer

Is the issue that XL thinks GOOD is a named range, or that it is a function?
--
Brevity is the soul of wit.


"Elkar" wrote:

Try this:

=IF(Q13="","",IF(Q13<0.1,"GOOD",IF(Q13<0.2,"FAIR", "POOR")))

Text needs to be enclosed in "quotes", otherwise, Excel will look for named
ranges called GOOD, FAIR and POOR. Also, on your 3rd IF statement, you don't
need to specify Q13 0.1 since this IF statement is only reached if Q31 is
not less than 0.1.

HTH,
Elkar


"Loren" wrote:

I'm putting this function in cell S13:

=IF(Q13="","",IF(Q13<0.1,good,IF(Q130.1<0.2,FAIR, POOR)))
I want GOOD for anything from 0 to 10%, FAIR for anything over 10% up to
20% and POOR for anything above 20%. What am I doing wrong?

No matter what I put in cell Q13, what shows up in cell S13 is - #NAME
- Why?
--
Loren

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 964
Default Wrong Answer

GOOD would be a named range. GOOD() would be a function.

"Dave F" wrote:

Is the issue that XL thinks GOOD is a named range, or that it is a function?
--
Brevity is the soul of wit.


"Elkar" wrote:

Try this:

=IF(Q13="","",IF(Q13<0.1,"GOOD",IF(Q13<0.2,"FAIR", "POOR")))

Text needs to be enclosed in "quotes", otherwise, Excel will look for named
ranges called GOOD, FAIR and POOR. Also, on your 3rd IF statement, you don't
need to specify Q13 0.1 since this IF statement is only reached if Q31 is
not less than 0.1.

HTH,
Elkar


"Loren" wrote:

I'm putting this function in cell S13:

=IF(Q13="","",IF(Q13<0.1,good,IF(Q130.1<0.2,FAIR, POOR)))
I want GOOD for anything from 0 to 10%, FAIR for anything over 10% up to
20% and POOR for anything above 20%. What am I doing wrong?

No matter what I put in cell Q13, what shows up in cell S13 is - #NAME
- Why?
--
Loren



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,574
Default Wrong Answer

Ah, right.
--
Brevity is the soul of wit.


"Elkar" wrote:

GOOD would be a named range. GOOD() would be a function.

"Dave F" wrote:

Is the issue that XL thinks GOOD is a named range, or that it is a function?
--
Brevity is the soul of wit.


"Elkar" wrote:

Try this:

=IF(Q13="","",IF(Q13<0.1,"GOOD",IF(Q13<0.2,"FAIR", "POOR")))

Text needs to be enclosed in "quotes", otherwise, Excel will look for named
ranges called GOOD, FAIR and POOR. Also, on your 3rd IF statement, you don't
need to specify Q13 0.1 since this IF statement is only reached if Q31 is
not less than 0.1.

HTH,
Elkar


"Loren" wrote:

I'm putting this function in cell S13:

=IF(Q13="","",IF(Q13<0.1,good,IF(Q130.1<0.2,FAIR, POOR)))
I want GOOD for anything from 0 to 10%, FAIR for anything over 10% up to
20% and POOR for anything above 20%. What am I doing wrong?

No matter what I put in cell Q13, what shows up in cell S13 is - #NAME
- Why?
--
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
A ? for our Excel Guru's and MVPs 4pinoy Excel Discussion (Misc queries) 38 November 24th 06 02:08 AM
=D6-E6. Answer in F6. I want answer in F6 only if value in E6? JillM Charts and Charting in Excel 1 July 21st 06 01:15 PM
What if I want the answer to be in Dollars or Percentage. Rahim Jaffer Excel Worksheet Functions 7 July 5th 06 03:15 AM
Formula not Return Required Answer Q John Excel Worksheet Functions 1 April 23rd 06 09:42 AM
Recalculating Formula - Getting the wrong answers skherzog Excel Discussion (Misc queries) 2 June 29th 05 12:31 PM


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