Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
What would I have to do, to change the code so the numbers that ge
copied keep their original text format? This is a great macr (something given to me on this Forum) however it converts my number from a text to a general format... and I lost my leading zeros... Sub TidyUp() Dim cLastRow As Long Dim rng As Range Dim i As Long cLastRow = Cells(Rows.Count, "C").End(xlUp).Row For i = 2 To cLastRow If Cells(i, "A").Value = "" Then Cells(i, "A").Value = Cells(i - 1, "A").Value Cells(i, "B").Value = Cells(i - 1, "B").Value End If Next i End Su -- Message posted from http://www.ExcelForum.com |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
opening text file converts numbers to scientific notation | Excel Discussion (Misc queries) | |||
Create a key that converts numbers to words? | Excel Discussion (Misc queries) | |||
Macro that converts xls to csv | Excel Worksheet Functions | |||
transposing an array converts dates into numbers | Excel Worksheet Functions | |||
converts numbers to dates | Excel Discussion (Misc queries) |