September 22, 200817 yr Newbies I would like to have all numbers with a length of <2 prefixed by a zero. 01 02 03 How could pre-pend the zero when the user exits the field? Thanks, jdholzen
September 22, 200817 yr Numbers (ie, data of type = number) cannot be prefixed with zeros. Text can. The general way of adding leading zeros (or other characters) is: Right( "00" & field ; 2 )
September 22, 200817 yr Author Newbies Hi, Thank you, but I would like for the field to be modifiable to the user. Is this possible with a calculation? Will I need a script here?
September 22, 200817 yr I prefer: SerialIncrement ( "00" ; field ) The difference is that numbers above 99 are not truncated.
Create an account or sign in to comment