-----Original Message-----
In my table my input mask for a phone number is great,
shows for example (207) 543-2345. But when I use Word
mail merge the phone number comes out 2075432345. Help,
please.
The mask you are using to input the phone numbers is not set up to be
saved with the data.
To save the mask (on future entries only), add a zero between the
semicolons (at the right portion of the mask) so that it looks like
this:
;0;_
Future entries will include the () and -.
See Access help on the Input Mask property
You'll need to use an Update query to modify the existing data first:
Update TableName set TableName.PhoneField = "(" & left([PhoneField],3)
& ") " & mid([PhoneField],4,3) & "-" & Right([PhoneField],4);
--
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
.