Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default IF formula question

Ok, I should be able to do this and just can't get it to work.

Here's the deal, I need a formula to do this:

If cell B11 is < 6500 then return 0
If cell B11 is 6500 and <8000 return 150
If cell B11 is 8000 and < 10000 return 300
If cell B11 is 10000 return 500


Here's what I've got and it isn't working, any help would be appreciated:

(Sarah feeling stupid this morning) - I know it is something simple I am
missing here. Thanks for that help!!!!


=IF(B11<6500,0,0)=IF(6501< B11<8000,150, 0)=IF(8001<B11<10000,
300,0)=IF(B1110001, 500,0)
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,574
Default IF formula question

Use the following syntax:

=IF(B1<6500,0,IF(AND(B116500,B11<8000),150....

Make sure your parentheses are correct.

Dave
--
Brevity is the soul of wit.


"sssspro" wrote:

Ok, I should be able to do this and just can't get it to work.

Here's the deal, I need a formula to do this:

If cell B11 is < 6500 then return 0
If cell B11 is 6500 and <8000 return 150
If cell B11 is 8000 and < 10000 return 300
If cell B11 is 10000 return 500


Here's what I've got and it isn't working, any help would be appreciated:

(Sarah feeling stupid this morning) - I know it is something simple I am
missing here. Thanks for that help!!!!


=IF(B11<6500,0,0)=IF(6501< B11<8000,150, 0)=IF(8001<B11<10000,
300,0)=IF(B1110001, 500,0)

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 30
Default IF formula question

And don't forget equal signs for the event X=6500 etc.

=IF(B1<=6500,0,IF(AND(B116500,B11<=8000),150....

Beege

"Dave F" wrote in message
...
Use the following syntax:

=IF(B1<6500,0,IF(AND(B116500,B11<8000),150....

Make sure your parentheses are correct.

Dave
--
Brevity is the soul of wit.


"sssspro" wrote:

Ok, I should be able to do this and just can't get it to work.

Here's the deal, I need a formula to do this:

If cell B11 is < 6500 then return 0
If cell B11 is 6500 and <8000 return 150
If cell B11 is 8000 and < 10000 return 300
If cell B11 is 10000 return 500


Here's what I've got and it isn't working, any help would be appreciated:

(Sarah feeling stupid this morning) - I know it is something simple I am
missing here. Thanks for that help!!!!


=IF(B11<6500,0,0)=IF(6501< B11<8000,150, 0)=IF(8001<B11<10000,
300,0)=IF(B1110001, 500,0)




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default IF formula question

Thank you Dave.

Now I did that. and it gives me #value.

I checked ()'s and didn't see anything. Am I doing something else wrong?

=IF(B11<6500,0),IF(AND(B116500,B11<8000),150),IF( AND(B118001,B11<10000),300),IF(AND(B1110000),500 )

"Dave F" wrote:

Use the following syntax:

=IF(B1<6500,0,IF(AND(B116500,B11<8000),150....

Make sure your parentheses are correct.

Dave
--
Brevity is the soul of wit.


"sssspro" wrote:

Ok, I should be able to do this and just can't get it to work.

Here's the deal, I need a formula to do this:

If cell B11 is < 6500 then return 0
If cell B11 is 6500 and <8000 return 150
If cell B11 is 8000 and < 10000 return 300
If cell B11 is 10000 return 500


Here's what I've got and it isn't working, any help would be appreciated:

(Sarah feeling stupid this morning) - I know it is something simple I am
missing here. Thanks for that help!!!!


=IF(B11<6500,0,0)=IF(6501< B11<8000,150, 0)=IF(8001<B11<10000,
300,0)=IF(B1110001, 500,0)

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 111
Default IF formula question

This may do what you are asking: Note, there were some holes, so I
arbitrarily changed < to <= or to = in certain places (otherwise it
returned false, for say 8000.)

=IF(B11<=6500,0,IF(AND(B116500,B11<=8000),150,IF( AND(B11=8001,B11<=10000),300,IF(B1110000,500))))

--
Kevin Vaughn


"sssspro" wrote:

Thank you Dave.

Now I did that. and it gives me #value.

I checked ()'s and didn't see anything. Am I doing something else wrong?

=IF(B11<6500,0),IF(AND(B116500,B11<8000),150),IF( AND(B118001,B11<10000),300),IF(AND(B1110000),500 )

"Dave F" wrote:

Use the following syntax:

=IF(B1<6500,0,IF(AND(B116500,B11<8000),150....

Make sure your parentheses are correct.

Dave
--
Brevity is the soul of wit.


"sssspro" wrote:

Ok, I should be able to do this and just can't get it to work.

Here's the deal, I need a formula to do this:

If cell B11 is < 6500 then return 0
If cell B11 is 6500 and <8000 return 150
If cell B11 is 8000 and < 10000 return 300
If cell B11 is 10000 return 500


Here's what I've got and it isn't working, any help would be appreciated:

(Sarah feeling stupid this morning) - I know it is something simple I am
missing here. Thanks for that help!!!!


=IF(B11<6500,0,0)=IF(6501< B11<8000,150, 0)=IF(8001<B11<10000,
300,0)=IF(B1110001, 500,0)



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 618
Default IF formula question

But if you've got a first condition of IF(B11<=6500,... (assuming that the
B1 was a misprint for B11), then you don't need the test for B116500 in the
second IF statement.
--
David Biddulph

"Beege" wrote in message
. ..
And don't forget equal signs for the event X=6500 etc.

=IF(B1<=6500,0,IF(AND(B116500,B11<=8000),150....

Beege

"Dave F" wrote in message
...
Use the following syntax:

=IF(B1<6500,0,IF(AND(B116500,B11<8000),150....

Make sure your parentheses are correct.

Dave
--
Brevity is the soul of wit.


"sssspro" wrote:

Ok, I should be able to do this and just can't get it to work.

Here's the deal, I need a formula to do this:

If cell B11 is < 6500 then return 0
If cell B11 is 6500 and <8000 return 150
If cell B11 is 8000 and < 10000 return 300
If cell B11 is 10000 return 500


Here's what I've got and it isn't working, any help would be
appreciated:

(Sarah feeling stupid this morning) - I know it is something simple I am
missing here. Thanks for that help!!!!


=IF(B11<6500,0,0)=IF(6501< B11<8000,150, 0)=IF(8001<B11<10000,
300,0)=IF(B1110001, 500,0)






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 117
Default IF formula question

TRY...
=IF(B11=10000,500,IF(B11=8000,300,IF(B11=6500,1 50,0)))
I PLACE SOME ADJUSTMENTS BASED ON THE MID OF " <"...
U CAN REMOVE "=" IF IT WILL FIT YOU...


"sssspro" wrote:

Ok, I should be able to do this and just can't get it to work.

Here's the deal, I need a formula to do this:

If cell B11 is < 6500 then return 0
If cell B11 is 6500 and <8000 return 150
If cell B11 is 8000 and < 10000 return 300
If cell B11 is 10000 return 500


Here's what I've got and it isn't working, any help would be appreciated:

(Sarah feeling stupid this morning) - I know it is something simple I am
missing here. Thanks for that help!!!!


=IF(B11<6500,0,0)=IF(6501< B11<8000,150, 0)=IF(8001<B11<10000,
300,0)=IF(B1110001, 500,0)

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
Find value in array Brook6 Excel Worksheet Functions 26 January 30th 07 09:40 PM
Copy Formula with Linked Cells - Validation Question Lori-Wheaten Links and Linking in Excel 0 July 21st 06 03:24 PM
Formula question goodolehuskers Excel Worksheet Functions 1 July 19th 06 11:10 PM
Repeating Formula Question THSaldivar Excel Discussion (Misc queries) 1 July 3rd 06 03:36 PM
Match then lookup Tenacity Excel Worksheet Functions 9 December 3rd 05 05:30 AM


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