I'd like to autocopy the content of a field in a form and keep the "format" ok:<br>I have 000001 in my first record an I'd like to automatically have:<br> 000002 in the second,<br> 000003 in the third,<br> etc...<br>for now I started to use:<br><br>Private Sub NoEnreg_AfterUpdate()<br><br>Me!NoEnreg.DefaultValue = Me!NoEnreg.Text + 1<br><br>End Sub<br>But It doesn't work...It increments the first time without keeping the zeros, then it keeps on "autocopying" the same.<br><br>Thanks.