keep leading zeros copy array to range

nikaleya

New Member
Joined
Feb 15, 2021
Messages
13
Office Version
  1. 365
Platform
  1. Windows
Hi community,

to speed up my code and prevent any disruptions I "replaced" the find&replace-function with the idea to first copy the affected range to an array, substitute the "vfind" with the "rplc" and copy the array back to the range.

VBA Code:
'set array
Dim myarray() As Variant
myarray = lastyear.Range("M4:M" & lastrow) 'two dimensional !!!

'find & replace
Dim i, j As Variant
For i = LBound(myarray) To UBound(myarray)
    For j = 1 To 1
    myarray(i, j) = WorksheetFunction.Substitute(myarray(i, j), vfind, rplc)
    Next j
Next i

'copy array to range
lastyear.Range("M4:M" & lastrow) = myarray

This works fine. Unfortunately, the range contains numbers stored as text (like "002.2021", for dates). The values in the array are correct, but when they get copied back to the range, the leading zeros are gone.
Any idea how I to keep them? Its important to keep the dates in this format as it is the global format for our reporting.

Thanks for help & thoughts!
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Try putting this (formattin the output range as text) before your last statement putting the array back.

VBA Code:
lastyear.Range("M4:M" & lastrow).NumberFormat = "@"

Alternatively format the whole column as text.
 
Upvote 0
Solution
Try putting this (formattin the output range as text) before your last statement putting the array back.

VBA Code:
lastyear.Range("M4:M" & lastrow).NumberFormat = "@"

Alternatively format the whole column as text.

Hi Alex,

thanks for your fast response, works perfectly!
 
Upvote 0

Forum statistics

Threads
1,215,771
Messages
6,126,798
Members
449,337
Latest member
BBV123

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top