If function on excel-several variables

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am attempting to build a IF formal on a spreadsheet to help figure monthly
incentives for employees. The situation is if a cell is greater then 3.00%
then its 1.00 per sale, if greater then 4...% then its 1.25 per sale, and so
on. What I can not figure out is how to build the formula to read all three
variables. I got it to work with just the 3.0% but I need the 4.0% and 5.0%
in the same formula. I appreciate anyone who may be able to help me.
 
=IF(A2>.05,1.5,IF(A2>.04,1.25,1))

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
=IF(A1>5%,1.5,IF(A1>4%,1.25,IF(A1>3%,1,"undefined")))
Adjust the values to suit.
 
maybe u can also refine a little bit for the monthly incentives

= (no_of_sales)*IF(A1>5%,1.5,IF(A1>4%,1.25,IF(A1>3%,1,"undefined")))
 

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 THEN formulas 1
HELP!! New to Excel. Need complex SUMIF. 0
Excel Multiple Excel logical tests 1
Finding amounts that meet specific criteria 3
Array lookup 2
Function help needed urgently!!! 1
IF FACTOR? 2
If statement 5

Back
Top