2003 Excel regarding commissions

  • Thread starter Thread starter Cat
  • Start date Start date
C

Cat

I have a couple questions.

I am creating a spreadsheet to do commissions.

First: If A3 is less than $1 I want 0, but if over $1 to calculate at 5% of
A2
Second: Then I need if A3 is less than 5% of A2 I need a 4% calculation of
A2.
 
Cat -
Here is what you asked for:

A3: =IF(A1<1,0,0.05*A2)
A4: =IF(A3<0.05*A2,0.04*A2,0)
 

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

Back
Top