IF function not working

S

Soni

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
 
G

Glenn

Soni said:
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))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

IF formula with 3 possible outcomes 8
IF Statement, multiple criteria 4
if function 1
Conditional Function 2
Conditional formating 1
conditional formating if and And 2
Need a short cut for this... 5
Problems 3

Top