Conditional Formula Help Please!

C

CharlieGirl

I can get 2/3 of the formula done, but I'm stumped on the middle section.
Any help is greatly appreciated! I'm trying to calculate a benefit amount
based on earnings, as follows:

66.7% of the first $3,000 of monthly earnings
55% of the next $2,500 of monthly earnings
40% of any balance

The maximum result is $3,500.

Thanks to any and all!
 
L

Luke M

Assuming your monthly earnings is in A2:

=MIN(3500,MAX(0,(A2-5500))*40%+MIN(A2,3000)*66.7%+MIN(2500,MAX(0,A2-3000))*55%)

Note that the 5500 comes from the sum of your first two conditions. You
could of course replace the cutoff points and percentages with cell
references, if desired.
 
C

CLR

=MAX(3500,IF(A1>5500,2001+1375+0.4*(A1-5500),IF(A1>3000,2001+0.55*(A1-3000),0.667*A1)))

Vaya con Dios,
Chuck, CABGx3
 
C

CharlieGirl

Thank you! Exactly what I was hoping for!!

Luke M said:
Assuming your monthly earnings is in A2:

=MIN(3500,MAX(0,(A2-5500))*40%+MIN(A2,3000)*66.7%+MIN(2500,MAX(0,A2-3000))*55%)

Note that the 5500 comes from the sum of your first two conditions. You
could of course replace the cutoff points and percentages with cell
references, if desired.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*
 
C

CLR

Sorry, my bad, shoulda bee
=Min(3500,IF(A1>5500,2001+1375+0.4*(A1-5500),IF(A1>3000,2001+0.55*(A1-3000),0.667*A1)))

Vaya con Dios,
Chuck, CABGx3
 

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