I have a list of suppliers codes, most of them are in text format like
ABC, DEF, XYZ
however I have a few that are just numbers,
12456
6789
00056
This last one is causing me problems as the leading zeros are lost
I am moving the data, trying to avoid a copy paste:
what could be the best way of keeping the leading zeros?
ABC, DEF, XYZ
however I have a few that are just numbers,
12456
6789
00056
This last one is causing me problems as the leading zeros are lost
I am moving the data, trying to avoid a copy paste:
Code:
Sheets("List").Range("A3:K1000").Value2 = Sheets("Query").Range("A3:K1000").Value2
what could be the best way of keeping the leading zeros?