Reconfiguring a formula to include "RoundUp"

TarkTeam4

New Member
Joined
Sep 11, 2021
Messages
8
Office Version
  1. 365
Platform
  1. Windows
(A)
I currently have a formula ... IF(AND(K8>2001,K8<15000),(K8-2000)*0.005)+60
K8 = $2460.00
Producing the final answer to be = $62.30
This formula works out perfectly.

(B)
However, I am now trying to add the "round-up" feature to the nearest thousand of the first portion of the formula ... IF(AND(K8>2001,K8<15000),(K8-2000)
(where again) K8 = $2460.00
Producing the answer to be = $460
Rounding up the answer to the nearest thousand would come out to = $1000

Then including the latter portion of the formula to the $1000 ... *0.005)+60
Bringing the final answer out to be = $65.00

How can I rewrite formula (A) that would include (B) "RoundUp" to the nearest thousand and get the results I am looking for?
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Hi & welcome to MrExcel.
How about
Excel Formula:
=IF(AND(K8>2001,K8<15000),CEILING(K8-2000,1000)*0.005)+60
 
Upvote 0
Hi & welcome to MrExcel.
How about
Excel Formula:
=IF(AND(K8>2001,K8<15000),CEILING(K8-2000,1000)*0.005)+60
AWESOME!!!! That worked perfectly. You have saved me hours of trying to reconfigure it myself. Thank you!!!
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,974
Messages
6,122,536
Members
449,088
Latest member
RandomExceller01

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