Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Dec 24, 5:45 am, Yellow Elk <Yellow
wrote: I need to ROUNDUP an Excel column that contains 250 numbers. Is there a way to do this without rounding up each cell individually? This is another option, probably similar to Ron's loops through column G and changes rounds up the value Sub RoundUpCells() Dim TheRange As Range Dim TheCell As Range Set TheRange = Range("G1", Range("G65536").End(xlUp)) For Each TheCell In TheRange TheCell = Application.RoundUp(TheCell, 2) Next TheCell End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Roundup an entire column | Excel Discussion (Misc queries) | |||
Wanting to sum a colum of numbers and then roundup to the next dol | Excel Worksheet Functions | |||
can I add a column and roundup with 1 function? | Excel Discussion (Misc queries) | |||
how to apply one function to an entire column of numbers | Excel Worksheet Functions | |||
How to add the same value to an entire column of numbers?? | Excel Worksheet Functions |