I am working on a sheet that will automatically calculate staff commissions based on sales and points. This formula needs to go in the cell which will display earned commission. Commission is only earned if three conditions are met - SalesA must be at least 8, SalesB must be at least 12, and the salesperson must have met Level 1 in points. If all three conditions are met, commission should be calculated based on the Level reached - there are 7 levels. These levels are located on a separate sheet called 'Office Setup'.

I was doing this with =SUM(IF... and nesting my IFs. This works fine when I'm only summing based on levels, but I would like it to also test the three conditions and that makes more than seven IFs.

If you could please help me write this formula... here is my best description of what I'm trying to do:

IF SalesA>=8 AND SalesB>=12 AND Points>='OfficeSetup!'Level1, THEN
-

IF Points>='OfficeSetup'!Level7, THEN (SalesA*Level7)+(SalesB*Level7),
IF Points>='OfficeSetup'!Level6, THEN (SalesA*Level6)+(SalesB*Level6),
IF Points>='OfficeSetup'!Level5, THEN (SalesA*Level5)+(SalesB*Level5)... all the way to Level1.

If Level1 is not met, it should display $0.00 because that is one of the three major conditions above.

To further complicate things, there are SalesC and SalesD categories that are not based on the level. As long as the three conditions are met, SalesC/D are awarded on a flat rate listed in the commission schedule... (SalesC*FlatRateC)+(SalesD*FlatRateD)

I have never worked with VBA and I'm not super experienced with Excel in general, but I have no problem with an advanced formula, especially if you can explain it to me. I've tried to set up the worksheet so that once this formula is in, it can be locked and all of the variables can be changed on a separate sheet without unlocking the formula. As long as it works, I never need to touch it again.

I would be happy to send you the sheet if it helps.

Thank you in advance, and I hope my explanation is clear enough.