RicksAtWork
Programmer
I am pulling a value from a row:
safeID = (lookUpRow.Cells(1, 2))
An example number is 001234
I then want to place this value in another cell via
Sheets(targetWorkSheetName).Cells(targetRow, 7).Value = safeID
However the leading zeros are lost. How do I prevent this?
safeID = (lookUpRow.Cells(1, 2))
An example number is 001234
I then want to place this value in another cell via
Sheets(targetWorkSheetName).Cells(targetRow, 7).Value = safeID
However the leading zeros are lost. How do I prevent this?