| Here is the basic command you need to embed ina macro:
=CONCATENATE(MID(C3,1,1),0,MID(C3,2,2),MID(C3,4,3) )
Where C3 is a cell with a length of 6, len(C3)=6; e.g. h67q02
It will make it h067q02
Doing it a bit further:
=IF(LEN(C3)=6,CONCATENATE(MID(C3,1,1),0,MID(C3,2,2 ),MID(C3,4,3)),C3)
Will leave the cell alone if the lenght is not equal to 6.
You may have to use a macro and create a totally different sheet because circular references are not allowed. |