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

I may be writing this incorrectly but please help -

=IF(c3<=1000,*.05)OR(c3=1001 BUT <=3999, *.10)OR(c3=4000, *.125)

Basically, if cell C3 is equal to or less than 1000, multiply the amount in
C3 by .05 OR if C3 is greater than or equal to 1001 BUT less than or equal to
3999, multiply by .10 OR if C3 is greater than or equal to 4000 then multiply
C3 by .125

What am I doing wrong?

Soni
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,240
Default IF function not working

Soni wrote:
I may be writing this incorrectly but please help -

=IF(c3<=1000,*.05)OR(c3=1001 BUT <=3999, *.10)OR(c3=4000, *.125)

Basically, if cell C3 is equal to or less than 1000, multiply the amount in
C3 by .05 OR if C3 is greater than or equal to 1001 BUT less than or equal to
3999, multiply by .10 OR if C3 is greater than or equal to 4000 then multiply
C3 by .125

What am I doing wrong?

Soni


=IF(C3<=1000,C3*0.05,IF(C3<=3999,C3*0.1,C3*0.125))
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,358
Default IF function not working

=C3*0.05+(C3=1000)*(C3*0.05)+(C3=4000)*(C3*0.025 )
--
** John C **

"Soni" wrote:

I may be writing this incorrectly but please help -

=IF(c3<=1000,*.05)OR(c3=1001 BUT <=3999, *.10)OR(c3=4000, *.125)

Basically, if cell C3 is equal to or less than 1000, multiply the amount in
C3 by .05 OR if C3 is greater than or equal to 1001 BUT less than or equal to
3999, multiply by .10 OR if C3 is greater than or equal to 4000 then multiply
C3 by .125

What am I doing wrong?

Soni

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

.... or =C3*(0.05+(C31000)*0.05+(C3=4000)*0.025)
Taking the C3 outside, and removing the = from =1000

[We note also that the OP didn't specify what to do with C3 values 1000 and
<1001, or 3999 and <4000.]
--
David Biddulph

"John C" <johnc@stateofdenial wrote in message
...
=C3*0.05+(C3=1000)*(C3*0.05)+(C3=4000)*(C3*0.025 )
--
** John C **

"Soni" wrote:

I may be writing this incorrectly but please help -

=IF(c3<=1000,*.05)OR(c3=1001 BUT <=3999, *.10)OR(c3=4000, *.125)

Basically, if cell C3 is equal to or less than 1000, multiply the amount
in
C3 by .05 OR if C3 is greater than or equal to 1001 BUT less than or
equal to
3999, multiply by .10 OR if C3 is greater than or equal to 4000 then
multiply
C3 by .125

What am I doing wrong?

Soni



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
ISBLANK function not working when cell is blank dut to function re mcmilja Excel Discussion (Misc queries) 9 May 7th 23 03:43 AM
Sum Function not working right Jenn Excel Worksheet Functions 2 August 21st 08 06:11 PM
IF function not working Loren Excel Discussion (Misc queries) 5 May 5th 08 05:36 PM
IF Function not working Loren Excel Discussion (Misc queries) 7 February 26th 07 10:27 PM
IF Function not working sonicj Excel Discussion (Misc queries) 2 February 2nd 05 03:00 AM


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