Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default IF function not working

I am typing this function in cell BR26 -
=IF(BF26="","",IF(BF26<10,"GOOD",IF(BF2610<20,"FA IR","POOR"))). If I have
from 1 to 9 in cell BF26 it reads GOOD but anything above 10 cell BR6 reads
POOR. What is wrong with my formula?
--
Thanks, Loren
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,268
Default IF function not working

Your formula does not work but the IF function certainly does, you need to
add AND

=IF(BF26="","",IF(BF26<10,"GOOD",IF(AND(BF26=10,B 26<20),"FAIR","POOR")))

also note that I put
= 10

or else you wouldn't have included 10 at all


--


Regards,


Peo Sjoblom


"Loren" wrote in message
...
I am typing this function in cell BR26 -
=IF(BF26="","",IF(BF26<10,"GOOD",IF(BF2610<20,"FA IR","POOR"))). If I have
from 1 to 9 in cell BF26 it reads GOOD but anything above 10 cell BR6
reads
POOR. What is wrong with my formula?
--
Thanks, Loren



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default IF function not working

IF(BF2610<20,... is not valid syntax for what you presumably intend.

IF(AND(BF2610,BF26<20),... is what you are trying to say, but of course you
have omitted the case where BF26 is *equal* to 10 (so this would give POOR,
along with the cases for BF26=20). If this should be included in the
condition, as IF(AND(BF26=10,BF26<20),..., then all you need to say is
IF(BF26<20,... because you've already tested for BF26<10 so you don't go on
to the later test unless BF26=10.
--
David Biddulph

"Loren" wrote in message
...
I am typing this function in cell BR26 -
=IF(BF26="","",IF(BF26<10,"GOOD",IF(BF2610<20,"FA IR","POOR"))). If I have
from 1 to 9 in cell BF26 it reads GOOD but anything above 10 cell BR6
reads
POOR. What is wrong with my formula?
--
Thanks, Loren



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 846
Default IF function not working

Try this
=IF(BF26="","",IF(BF26<10,"GOOD",IF(BF26<20,"FAIR" ,"POOR"))).
--
Wag more, bark less


"Loren" wrote:

I am typing this function in cell BR26 -
=IF(BF26="","",IF(BF26<10,"GOOD",IF(BF2610<20,"FA IR","POOR"))). If I have
from 1 to 9 in cell BF26 it reads GOOD but anything above 10 cell BR6 reads
POOR. What is wrong with my formula?
--
Thanks, Loren

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 258
Default IF function not working

Loren --

Try

=IF(BF26="","",IF(BF26<10,"Good",IF(BF26<20,"Fair" ,"Poor")))


HTH

"Loren" wrote:

I am typing this function in cell BR26 -
=IF(BF26="","",IF(BF26<10,"GOOD",IF(BF2610<20,"FA IR","POOR"))). If I have
from 1 to 9 in cell BF26 it reads GOOD but anything above 10 cell BR6 reads
POOR. What is wrong with my formula?
--
Thanks, Loren



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,651
Default IF function not working

On Mon, 5 May 2008 09:16:02 -0700, Loren
wrote:

BF2610<20

Not sure how you derived this syntax.

If what you want is to test for the condition where BF26 is greater than 10 and
also less than 20, the proper syntax is:

AND(BF2610,BF26<20)

If you want something else, you'll need to spell it out in more detail.



--ron
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
Old function is not working. Marhes Excel Worksheet Functions 0 June 6th 07 05:23 PM
IF Function not working Loren Excel Discussion (Misc queries) 7 February 26th 07 09:27 PM
Sum function not working, help please! trickdigger Excel Worksheet Functions 2 April 9th 06 03:04 AM
IF(AND function is not working Access Newbie looking for help Excel Worksheet Functions 4 March 20th 06 06:47 PM
IF Function not working sonicj Excel Discussion (Misc queries) 2 February 2nd 05 02:00 AM


All times are GMT +1. The time now is 10:26 PM.

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

About Us

"It's about Microsoft Excel"