Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
ssb ssb is offline
external usenet poster
 
Posts: 4
Default Introduce decimal point in a list of values in column.

Hi,

Any help with this problem would be great..! Thanks for your attention.

In Column A, there is a long list of numbers: 124, 145673, 2345,
178353, etc. I need to come up with a quicker way of introducing a
decimal point with three decimal places (divide by 1000) to get
something like this IN THE SAME column. No new column must be
introduced to achieve this.

0.124
145.673
2.345
178.353, etc.

Since the list is too long, manually editing the cells and introducing
decimals would be tedious.

On using formulae and functions, I end up get circular references. Let
me know if there is any way.
Thanks.

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 347
Default Introduce decimal point in a list of values in column.

Hi,

Try this, in a blank cell type 1000, copy it then select your data, paste
special and under "operation" select divide and click ok.

HTH
Jean-Guy



"ssb" wrote:

Hi,

Any help with this problem would be great..! Thanks for your attention.

In Column A, there is a long list of numbers: 124, 145673, 2345,
178353, etc. I need to come up with a quicker way of introducing a
decimal point with three decimal places (divide by 1000) to get
something like this IN THE SAME column. No new column must be
introduced to achieve this.

0.124
145.673
2.345
178.353, etc.

Since the list is too long, manually editing the cells and introducing
decimals would be tedious.

On using formulae and functions, I end up get circular references. Let
me know if there is any way.
Thanks.


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 422
Default Introduce decimal point in a list of values in column.

Ssb:

I played around with this and came up with:

Sub DivideByThou()
Const Divisor As Integer = 1000
Range("Z1").Value = Divisor ' Use some other cell if Z1 is in use
Set t = Range("Z1")
t.Copy
With Selection
..PasteSpecial Paste:=xlPasteAll, Operation:=xlDivide, SkipBlanks _
:=False, Transpose:=False
End With
Application.CutCopyMode = False
End Sub

HTH


"ssb" wrote in message
ups.com:

Hi,

Any help with this problem would be great..! Thanks for your attention.

In Column A, there is a long list of numbers: 124, 145673, 2345,
178353, etc. I need to come up with a quicker way of introducing a
decimal point with three decimal places (divide by 1000) to get
something like this IN THE SAME column. No new column must be
introduced to achieve this.

0.124
145.673
2.345
178.353, etc.

Since the list is too long, manually editing the cells and introducing
decimals would be tedious.

On using formulae and functions, I end up get circular references. Let
me know if there is any way.
Thanks.


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
hide values and display a decimal point that fills the cell Sally Excel Worksheet Functions 2 October 10th 06 05:01 AM
macro unouwanme Excel Discussion (Misc queries) 9 August 31st 06 09:38 PM
aligning decimal point in a column of figures in Excel Fonda Excel Worksheet Functions 1 August 3rd 06 04:59 PM
Return SEARCHED Column Number of Numeric Label and Value Sam via OfficeKB.com Excel Worksheet Functions 23 January 30th 06 06:16 PM
VBA to set AutoFilter to List all rows with same values in column? Dennis Excel Discussion (Misc queries) 2 June 24th 05 12:37 AM


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

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

About Us

"It's about Microsoft Excel"