Rounding Function

RandyD123

Active Member
Joined
Dec 4, 2013
Messages
289
Office Version
  1. 2016
Platform
  1. Windows
I have a column of numbers in the "I" column. It runs from I8:I31. This column is populated based on info from another tab. So the existing formula in that column starting with "I8" is "=Output!AD5 and runs to "I31" which is "=Output!AD28"

What I need is a formula or conditional formatting that will do the following:

Any number in the "I" column that is more than 0.1 to .99 has to round up to 1.0
Any number in the "I" column that is greater than 1.0 will follow normal rounding rules, meaning 1.1 - 1.4 will round down to 1.0 and 1.5 and above will round up to 2.0......and so on.

Thanks in advance for any help.
 

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
Perhaps:

Excel Formula:
=IF(I8<1,roundup(I8,0),ROUND(I8,0))
 
Upvote 0
But don't I have to have the Original Number from the output sheet built into the formula?
 
Upvote 0
If you want the formula in the I column, then replace the references to I8 with whatever cell that is linked to currently.
 
Upvote 0

Forum statistics

Threads
1,214,588
Messages
6,120,412
Members
448,960
Latest member
AKSMITH

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