Hi. I was wondering if there was a way to apply an input mask to already
entered data in a table that follows the format of the input mask?
Do you mean you have data stored in the table as, for example,
123456789 and you wish to change the data to 123-45-6789 so that
existing data is in the same form as newly entered data?
You can run an Update query:
Update YourTable Set YourTable.FieldName =
Format([FieldName],"@@@-@@-@@@@")
After you run this update query, you can set an Input Mask on the form
control to
000\-00\-0000;0;_
Of course you need to change the above query and mask to whatever your
actual needs are.