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

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
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,223,886
Messages
6,175,190
Members
452,616
Latest member
intern444

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