Try changing the 'Input Mask' to something like 0000 (or
however many digits will be in your number). If the number
could be 5 or 6 digits long, for example, try 000009
- If these are identifiers rather than numbers with which you will be
doing arithmatic calculations, use a Text field rather than Number;
set its Input Mask property to
000000
to force entry of six numeric characters.
- If you will be doing math with the values, set the field's Format
property to (again) 000000. This will not STORE leading zeros (the
number is stored as a binary computer word) but it will display them.
- If these are identifiers rather than numbers with which you will be
doing arithmatic calculations, use a Text field rather than Number;
set its Input Mask property to
000000
to force entry of six numeric characters.
- If you will be doing math with the values, set the field's Format
property to (again) 000000. This will not STORE leading zeros (the
number is stored as a binary computer word) but it will display them.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.