Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I am loading a phone number field into my module and each of the numbers are in a simple xxxxxxxxxx 10-digit format. I would like to change the format to be something more like xxx.xxx.xxxx or (xxx) xxx-xxxx. Is it possible to format this at load time?
Thanks,
Paul
More specific:
=MID(Field,1,3) & "." & MID(Filed,4,3) & "." & MID(Field,7,4) as PhoneNumber
Stephen
Use the MID statement.
Stephen
More specific:
=MID(Field,1,3) & "." & MID(Filed,4,3) & "." & MID(Field,7,4) as PhoneNumber
Stephen
Thanks!