Using the Mass Update saved a lot of time scrolling through each record.
Since I do not know how to write the codes, I found this programming code in the Lantica User Forum and altered it to my field names.
Telephone Number fields. I ditched the template and used the mass update for the telephone numbers as you suggested. using the following line in the Program Editor for each field:
HomePhone = "(" + @Left(HomePhone, 3) + ") " + @Mid(HomePhone, 4, 3) + "-" + @Right(HomePhone, 4)
Mobile = "(" + @Left(Mobile, 3) + ") " + @Mid(Mobile, 4, 3) + "-" + @Right(Mobile, 4)
WorkPhone = "(" + @Left(WorkPhone, 3) + ") " + @Mid(WorkPhone, 4, 3) + "-" + @Right(WorkPhone, 4)
Now if I can just find the code for formatting the date field I could save more time.

Thanks for your help!