There are several ways to do this, each giving you what you want. In the example below, I chose not to assume the current century, but rather take it from the current date:<br>
<br>
x = "000125"<br>
cAnswer = substr(x,3,2) + "/" + substr(x,5,2)+ "/" + left(dtos(date()),2) + left(x,2)<br>
<br>
or, to get a date type:<br>
<br>
dAnswer = ctod(substr(x,3,2) + "/" + substr(x,5,2)+ "/" + left(dtos(date()),2) + left(x,2))<br>
<br>