I have a csv where one column is a six or seven digit ID number. I want to add the number 0 to the beginning of all the IDs that have six digits. How is this possible?
for example
id
203434
405679
1049294
139294
1037912
I would like it to be
id
0203434
0405679
1049294
0139294
1037912
any advice appreciated.