Nov 17, 2000 #1 samimichaels IS-IT--Management Joined Nov 17, 2000 Messages 20 Location US I have a field that is a phone number is ########## format that I would like to change to (###) ###-#### format. And I can't remember how to do this.
I have a field that is a phone number is ########## format that I would like to change to (###) ###-#### format. And I can't remember how to do this.
Nov 17, 2000 #2 NTSGuru Programmer Joined Jul 25, 2000 Messages 52 using the formula editor : "(" & left({phonefield},3) & " " & mid({phonefield},4,3) & "-" & right({phonefield},4) HTH Fred Upvote 0 Downvote
using the formula editor : "(" & left({phonefield},3) & " " & mid({phonefield},4,3) & "-" & right({phonefield},4) HTH Fred
Nov 17, 2000 Thread starter #3 samimichaels IS-IT--Management Joined Nov 17, 2000 Messages 20 Location US It worked great.. thanks. Upvote 0 Downvote
Nov 22, 2000 #4 Guest_imported New member Joined Jan 1, 1970 Messages 0 alternatively use the Picture command, which allows u to put a mask over a string to format as u require ie Picture ({fieldname},"(xxx) xxx-xxxx" should do the trick Upvote 0 Downvote
alternatively use the Picture command, which allows u to put a mask over a string to format as u require ie Picture ({fieldname},"(xxx) xxx-xxxx" should do the trick