Another Newb question

marksv4

New Member
Joined
Nov 12, 2019
Messages
2
Column A, cells A1, A2 etc have values in it. i.e.
525000
675000
etc.
In cell B1, B2 etc I need to know how to get 7% of the first 100,000 and 2.5% of the remaining amount

I.E
525,000, 7% of 100,000 plus 2.5% of 425,000
675,000, 7% of the first 100,000 plus 2.5% of 575,000


I can do it in two columns but am unsure of the complete formula for getting the answer in B1, B2 etc.


Thanks everyone!!
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
I think this should do it...

=0.07*MIN(100000,A1)+0.025*MAX(0,A1-100000)
 
Upvote 0

Forum statistics

Threads
1,215,043
Messages
6,122,812
Members
449,095
Latest member
m_smith_solihull

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top