A UNIQUE FORMULA

F

FLATRATE

EXAMPLE: I want to multiply one cell with a dollar amount in it, by a cell
that has a quantity of employees in it. I want the dollar amount to remain
the same for the first two employees and only increase after the 3rd employee
is entered. If the amount is $4000, I want it to remain at $4000 until the
3rd employee is entered making it $8000 and then each additional employee
would add $4000. 10 employees would be $36,000. Can it be done? Appreciate
any help.
 
D

Dave

Hi,
If your $4000 is in B2, and number of employees in A2:
=IF(A2>2,(A1-2)*B2,B2)
Change the ref's to suit your data.
Fegards - Dave.
 
J

Jacob Skaria

Use the IF condition. Suppose

A1 = Emp Count
B1 = $ 4000

= IF(A1>2,(A1-1)*B1,B1)

If this post helps click Yes
 

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

Top