<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Phone Number Formatting Question in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784689#M277703</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you could also use regualr expressions for this task.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Here are some links on using RegEx in QlikView:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A class="jive-link-external-small" href="http://www.qlikfix.com/2010/10/18/regular-expressions-in-the-load-script/" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;http://www.qlikfix.com/2010/10/18/regular-expressions-in-the-load-script/&lt;/A&gt;&amp;nbsp; by &lt;A _jive_internal="true" class="jiveTT-hover-user jive-link-profile-small" data-containerid="-1" data-containertype="-1" data-objectid="71251" data-objecttype="3" href="https://community.qlik.com/people/BarryHarmsen" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;Barry Harmsen&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A _jive_internal="true" data-containerid="2049" data-containertype="14" data-objectid="4587" data-objecttype="102" href="https://community.qlik.com/docs/DOC-4587" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;How to use regular expressions&lt;/A&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt; by &lt;A _jive_internal="true" class="jiveTT-hover-user jive-link-profile-small" data-containerid="-1" data-containertype="-1" data-objectid="24097" data-objecttype="3" href="https://community.qlik.com/people/ANDREA_GHIRO" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;Andrea Ghirardello&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Jan 2015 00:18:29 GMT</pubDate>
    <dc:creator>MarcoWedel</dc:creator>
    <dc:date>2015-01-29T00:18:29Z</dc:date>
    <item>
      <title>Phone Number Formatting Question</title>
      <link>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784686#M277700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm importing phone numbers that have no standard formating.&amp;nbsp; Some have (XXX), some have +999, some have "-", etc.&amp;nbsp; I found the purgeChr() function, which helps immensely.&amp;nbsp; However, many of the numbers have extensions, such as....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1234567890ext999 or&lt;/P&gt;&lt;P&gt;1234567890x444&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to remove everything after (and including) the "e" or the "x" in the examples above?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp;&amp;nbsp;&amp;nbsp; Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2015 21:09:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784686#M277700</guid>
      <dc:creator />
      <dc:date>2015-01-28T21:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Phone Number Formatting Question</title>
      <link>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784687#M277701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Heh, a familiar problem &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;...&amp;nbsp; see this (original phone number here is field P):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Phone&lt;BR /&gt; if(index(lower(P), 'x')&amp;gt;0,&lt;BR /&gt; // there is extension&lt;BR /&gt; if(len(keepchar(subfield(lower(P),'x',1),'0123456789'))=10,&lt;BR /&gt;&amp;nbsp; //format with extension&lt;BR /&gt;&amp;nbsp; '(' &amp;amp; left(keepchar(subfield(lower(P),'x',1),'0123456789'),3) &amp;amp; ')' &amp;amp;&lt;BR /&gt;&amp;nbsp; ' ' &amp;amp; mid(keepchar(subfield(lower(P),'x',1),'0123456789'),4,3) &amp;amp;&lt;BR /&gt;&amp;nbsp; '-' &amp;amp; right(keepchar(subfield(lower(P),'x',1),'0123456789'),4) &amp;amp;&lt;BR /&gt;&amp;nbsp; ' x ' &amp;amp; subfield(lower(P),'x',2),&lt;BR /&gt;&amp;nbsp; // leave data as is&lt;BR /&gt;&amp;nbsp; P),&lt;BR /&gt; // there is no extension&lt;BR /&gt; if(len(keepchar(P,'0123456789'))=10,&lt;BR /&gt;&amp;nbsp; // format without ext&lt;BR /&gt;&amp;nbsp; '(' &amp;amp; left(keepchar(P,'0123456789'),3) &amp;amp; ')' &amp;amp;&lt;BR /&gt;&amp;nbsp; ' ' &amp;amp; mid(keepchar(P,'0123456789'),4,3) &amp;amp;&lt;BR /&gt;&amp;nbsp; '-' &amp;amp; right(keepchar(P,'0123456789'),4),&lt;BR /&gt;&amp;nbsp; // we'll see&lt;BR /&gt;&amp;nbsp; P))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; as "Work Phone",&lt;BR /&gt; //&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2015 21:15:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784687#M277701</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-28T21:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: Phone Number Formatting Question</title>
      <link>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784688#M277702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Subfield, keepchar, purgechar and replace will be useful functions to extract the data you need.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2015 21:20:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784688#M277702</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2015-01-28T21:20:51Z</dc:date>
    </item>
    <item>
      <title>Re: Phone Number Formatting Question</title>
      <link>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784689#M277703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you could also use regualr expressions for this task.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Here are some links on using RegEx in QlikView:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A class="jive-link-external-small" href="http://www.qlikfix.com/2010/10/18/regular-expressions-in-the-load-script/" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;http://www.qlikfix.com/2010/10/18/regular-expressions-in-the-load-script/&lt;/A&gt;&amp;nbsp; by &lt;A _jive_internal="true" class="jiveTT-hover-user jive-link-profile-small" data-containerid="-1" data-containertype="-1" data-objectid="71251" data-objecttype="3" href="https://community.qlik.com/people/BarryHarmsen" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;Barry Harmsen&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A _jive_internal="true" data-containerid="2049" data-containertype="14" data-objectid="4587" data-objecttype="102" href="https://community.qlik.com/docs/DOC-4587" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;How to use regular expressions&lt;/A&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt; by &lt;A _jive_internal="true" class="jiveTT-hover-user jive-link-profile-small" data-containerid="-1" data-containertype="-1" data-objectid="24097" data-objecttype="3" href="https://community.qlik.com/people/ANDREA_GHIRO" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;Andrea Ghirardello&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 00:18:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784689#M277703</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-01-29T00:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: Phone Number Formatting Question</title>
      <link>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784690#M277704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use keepchar() like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;KeepChar(PhoneNumber, '1234567890exEX') AS PhoneNumber_Formatted&lt;/P&gt;&lt;P&gt;FROM DataSource;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 03:20:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784690#M277704</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-01-29T03:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: Phone Number Formatting Question</title>
      <link>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784691#M277705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If possible post sample phone numbers with expected output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use combination of subfield(),KeepChar() and if-else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 04:06:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784691#M277705</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2015-01-29T04:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: Phone Number Formatting Question</title>
      <link>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784692#M277706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Margus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your phone number is first 10 digits then why don't you use LEFT(PhoneNumber,10) as PhoneNumber?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vamsi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 05:53:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784692#M277706</guid>
      <dc:creator />
      <dc:date>2015-01-29T05:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: Phone Number Formatting Question</title>
      <link>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784693#M277707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dan Magnus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i got solution for your requirement,Used sub field function in script.&lt;/P&gt;&lt;P&gt;Please find attached QVW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vamsi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 06:18:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784693#M277707</guid>
      <dc:creator />
      <dc:date>2015-01-29T06:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: Phone Number Formatting Question</title>
      <link>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784694#M277708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So the main formula I'm using is:&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 10pt;"&gt;PurgeChar&lt;SPAN style="color: #000000;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;HomePhone&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;,'()-.,:+/=|_~?*` ')) &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This is getting rid of the symbols I'm seeing.&amp;nbsp;&amp;nbsp; However, now I need to get rid of all alpha (letters) I'm seeing, except for E and X (for phone extensions...I need these letters to use the index function).&amp;nbsp;&amp;nbsp;&amp;nbsp; Is there a way, besides listing each of the 24 letters in the formula above, to eliminate these letters?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Feb 2015 17:40:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784694#M277708</guid>
      <dc:creator />
      <dc:date>2015-02-03T17:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: Phone Number Formatting Question</title>
      <link>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784695#M277709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about turning it around and using keepchar()?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KeepChar(HomePhone,'0123456789EX')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Feb 2015 18:41:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784695#M277709</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2015-02-03T18:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: Phone Number Formatting Question</title>
      <link>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784696#M277710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you tried the solution I provided earlier using KeepChar()?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;*,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;KeepChar(PhoneNumber, '1234567890exEX') AS PhoneNumber_Formatted&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM DataSource;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2015 04:07:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784696#M277710</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-02-04T04:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: Phone Number Formatting Question</title>
      <link>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784697#M277711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, KeepChar is a lot simpler naming a dozen nums/chars to keep rather than all those to purge.&amp;nbsp; Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Feb 2015 22:58:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784697#M277711</guid>
      <dc:creator />
      <dc:date>2015-02-05T22:58:53Z</dc:date>
    </item>
    <item>
      <title>Re: Phone Number Formatting Question</title>
      <link>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784698#M277712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you got the answer you can close this thread by marking Correct and Useful answers to the posts which helps you in finding the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Feb 2015 02:22:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Phone-Number-Formatting-Question/m-p/784698#M277712</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-02-06T02:22:27Z</dc:date>
    </item>
  </channel>
</rss>

