ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Macro (https://www.excelbanter.com/excel-programming/300042-macro.html)

C3

Macro
 
How to make a macro who will check one entire column (etc. A) for numbers
with 4 digits and less and change it to a 5 digits numbers.

Example:

499 to 00499
1480 to 01480

and 5 digits number leave unchanged.


Thanks!



Don Guillett[_4_]

Macro
 
Just record this custom formatting. Modified to remove selections.
Sub Macro3()
'
' Macro3 Macro
' Macro recorded 6/1/2004 by Don Guillett
'

'
Range("C1:C200").NumberFormat = "00000"
End Sub

--
Don Guillett
SalesAid Software

"C3" wrote in message
...
How to make a macro who will check one entire column (etc. A) for numbers
with 4 digits and less and change it to a 5 digits numbers.

Example:

499 to 00499
1480 to 01480

and 5 digits number leave unchanged.


Thanks!





Gord Dibben

Macro
 
C3

You don't need a macro for this, just select the column and
FormatCellsCustom. Enter 00000 and OK.

If you want a macro...........

Sub Five_Digits()
Columns("A:A").Select
Selection.NumberFormat = "00000"
End Sub

Gord Dibben Excel MVP


On Tue, 1 Jun 2004 15:06:40 +0200, "C3" wrote:

How to make a macro who will check one entire column (etc. A) for numbers
with 4 digits and less and change it to a 5 digits numbers.

Example:

499 to 00499
1480 to 01480

and 5 digits number leave unchanged.


Thanks!




All times are GMT +1. The time now is 01:37 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com