telephone number format question

P

photogman

I would like to be able to print out a telephone number like the following:

800-555-1212 ext 54321

I don't know how to setup an input mask that would allow for the ext.
Sometimes the number of extension digits may be 5, sometimes fewer. I would
like the display to show the number and ext number only if it contains it
and display only the telephone number if it doesn't have an extension.

Can anyone lend a helping hand here?

Thanks for you help!
 
J

Jamie Richards

If you type input mask into Access help (A2K) there is substantial info on
available masks.

0 Digit (0 through 9, entry required; plus [+] and minus [-] signs not
allowed).
9 Digit or space (entry not required; plus and minus signs not
allowed).
# Digit or space (entry not required; blank positions converted to
spaces, plus and minus signs allowed).
L Letter (A through Z, entry required).
? Letter (A through Z, entry optional).
A Letter or digit (entry required).
a Letter or digit (entry optional).
& Any character or a space (entry required).
C Any character or a space (entry optional).
. , : ; - / Decimal placeholder and thousands, date, and time
separators. (The actual character used depends on the regional settings
specified by double-clicking Regional Settings in the Windows Control
Panel.)
< Causes all characters that follow to be converted to lowercase.
Causes all characters that follow to be converted to uppercase.
! Causes the input mask to display from right to left, rather than
from left to right. Characters typed into the mask always fill it from left
to right. You can include the exclamation point anywhere in the input mask.
\ Causes the character that follows to be displayed as a literal
character. Used to display any of the characters listed in this table as
literal characters (for example, \A is displayed as just A).
Password Setting the InputMask property to the word Password creates a
password entry text box. Any character typed in the text box is stored as
the character but is displayed as an asterisk (*).


As an example for you, if you had 5 or fewer numbers in an extention, your
mask might be:

99999 This mask allows optional entry of a digit or space (accomadates
for occasions when number is less than 5digits)

Assuming all digits are required, the phone number might be:

000\-000\-0000

Jamie
 

Ask a Question

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.

Ask a Question

Top