Masking Question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
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)
 
Back
Top