IfSum

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

Guest

i would like 2 do the following,

if an person as done less then 36 hours all their bouns from 5 will go down
to 0.50

=<36hours (bonus/5), this times 0.50

like a sum that works this out

e.g

Ian Smith did 34 hours got 10 sales @ 5 total = 50 so i need a sum that will
change this so it say 5 not 50
 
TYE said:
i would like 2 do the following,

if an person as done less then 36 hours all their bouns from 5 will go
down
to 0.50

=<36hours (bonus/5), this times 0.50

like a sum that works this out

e.g

Ian Smith did 34 hours got 10 sales @ 5 total = 50 so i need a sum that
will
change this so it say 5 not 50

It appears that your example (last sentence) is not consistent with
your premise. Anyway, I am suggesting a solution based on how I
interpret your last sentence. Based on this, your IF statement would
look something like this:

IF[/B] (HOURS_WORKED<36) *THEN* (BONUS=5)* ELSE * (BONUS=SALES*5)

AND SO, YOUR FORMULA SHOULD BE

=IF(B1<36,5,C1*5)

where

B1 contains the number of hours worked and
C1 contains the sales

... hope this is what you need.

Regards.
 
=IF(hours=<36,bonus*0.5,bonus*5)

Replace hours and bonus with the relevant cell references
 
=IF(total_hours<36,sales*.5,sales*5)

--

HTH

RP
(remove nothere from the email address if mailing direct)
 

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

Help on ifsum 3
IFSUM 6
Commission Calculation with IF Stmt. 2
SUBTOTAL - TJ 2
Help Wanted 1
Calculating weighted average of Percent Change 0
multiple results display after filter function 1
IF SUM 3

Back
Top