LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #4   Report Post  
Posted to microsoft.public.excel.misc
D. D. is offline
external usenet poster
 
Posts: 53
Default How do I ROUNDUP an entire column of numbers?

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Roundup an entire column Boss Mary[_2_] Excel Discussion (Misc queries) 6 August 23rd 07 05:54 PM
Wanting to sum a colum of numbers and then roundup to the next dol AL Excel Worksheet Functions 3 April 22nd 07 04:20 AM
can I add a column and roundup with 1 function? Sheila Excel Discussion (Misc queries) 2 March 8th 06 08:33 PM
how to apply one function to an entire column of numbers guatdoc Excel Worksheet Functions 1 November 9th 05 04:26 AM
How to add the same value to an entire column of numbers?? Brita Excel Worksheet Functions 1 December 29th 04 03:53 AM


All times are GMT +1. The time now is 11:24 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"