Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default How do I ROUNDUP an entire column of numbers?

I need to ROUNDUP an Excel column that contains 250 numbers. Is there a way
to do this without rounding up each cell individually?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default How do I ROUNDUP an entire column of numbers?

Just copy the ROUNDUP formula down the column. Select the cell, select the
bottom right-hand corner and it will turn into a square "fill handle" which
you can drag down. If your formula is in a cell adjacent to the column with
the data, if you double-click the fill handle it will fill down the column
as far as the data stretches.
--
David Biddulph

"Yellow Elk" <Yellow wrote in message
...
I need to ROUNDUP an Excel column that contains 250 numbers. Is there a
way
to do this without rounding up each cell individually?



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default How do I ROUNDUP an entire column of numbers?

Try
Sub roundemup()
For Each c In Range("H2:H251")
c.Value = Application.RoundUp(c, 0)
Next c
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Yellow Elk" <Yellow
wrote in message
...
I need to ROUNDUP an Excel column that contains 250 numbers. Is there a
way
to do this without rounding up each cell individually?


  #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

Reply
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 08:41 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"