Masking Question

M

Mike Busch

I have a form that I need to have it show and print a number that starts with
a "0".
the number is 064278 I trred to use a mask with "999999" but it did not
word. Any Ideas.
 
K

KARL DEWEY

Number do not have leading zeros - text information can.

You can fill in leading zeros in a query like this --
Your Field Label: Right("00000" & [YourFieldName],6)
 
Top