Find max/min values that will round to the same number

chris0b

New Member
Joined
May 10, 2023
Messages
6
Office Version
  1. 2016
Is there a way to find the maximum and minimum values that round to the same number in a calculation?

My work laptop doesn't let me install the XL2BB :( but I will try to explain

round(9.35/37.5,2)=0.25
round(9.41/37.5,2)=0.25

If I try to reverse the calculation 0.25*37.5 I get 9.375 (or 9.38 if rounded).
Is there a way to find the maximum and minimum values that will also round to 0.25 (or any figure I choose) in the same calculation?
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Min: ROUND(0.245,2) = 0.25 => 0.245*37.5 = 9.1875

Max: ROUND(0.254999,2) = 0.25 => 0.254999*37.5 = 9.5624
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,399
Latest member
alchavar

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