Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Format Phone Numbers at Load Time

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

1 Solution

Accepted Solutions
Not applicable
Author

More specific:

=MID(Field,1,3) &  "." & MID(Filed,4,3) & "." & MID(Field,7,4) as PhoneNumber

Stephen

View solution in original post

3 Replies
Not applicable
Author

Use the MID statement.

Stephen

Not applicable
Author

More specific:

=MID(Field,1,3) &  "." & MID(Filed,4,3) & "." & MID(Field,7,4) as PhoneNumber

Stephen

Not applicable
Author

Thanks!