G
Guest
I have a list of numbers like this 3175AAA0101. I need to convert them all to
this format: 3175AAA0110141. How do I do it?
Byron
this format: 3175AAA0110141. How do I do it?
Byron
Toppers said:with value in A1:
in B1:
=LEFT(A1,9) & "1" & RIGHT(A1,2) &"41"
Copy down
HTH