Formula issue

Szucchari

New Member
Joined
Jun 3, 2019
Messages
22
Hi guys, I give up! I cant figure this out please help!

I need a formula to come up with the money for this:

1-100 pages @ $1 per page, 101+ pages @ $0.25 per page up to a maximum of $200 flat rate.

I need this all to configure by just putting in the total page numbers into a cell.

Thank you!
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Welcome to the Board!

Try this for page numbers in cell A1:
Code:
=MIN(MIN(A1,100)+MAX(0,A1-100)*0.25,200)
 
Upvote 0
You are welcome.

I hope it makes sense. If you break it apart bit-by-bit, hopefully the logic becomes apparent.
If not and you have any questions, just let me know.
 
Upvote 0

Forum statistics

Threads
1,224,820
Messages
6,181,157
Members
453,021
Latest member
Justyna P

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