<?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: Replace every 3rd comma with &amp; in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Replace-every-3rd-comma-with/m-p/1426238#M811623</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Concat(Mid(Dim,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Index(Dim, ',', 3 * (ValueLoop(1, Floor(SubStringCount(Dim, ',')/3)+1)-1)) + 1,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(If(Index(Dim, ',', 3 * (ValueLoop(1, Floor(SubStringCount(Dim, ',')/3)+1))) = 0, Len(Dim), Index(Dim, ',', 3 * (ValueLoop(1, Floor(SubStringCount(Dim, ',')/3)+1)))-1)-Index(Dim, ',', 3 * (ValueLoop(1, Floor(SubStringCount(Dim, ',')/3)+1)-1))))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;, '&amp;amp;', ValueLoop(1, Floor(SubStringCount(Dim, ',')/3)+1)) &lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Sep 2017 14:40:12 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2017-09-27T14:40:12Z</dc:date>
    <item>
      <title>Replace every 3rd comma with &amp;</title>
      <link>https://community.qlik.com/t5/QlikView/Replace-every-3rd-comma-with/m-p/1426233#M811618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I want to replace every third comma in my string with '&amp;amp;' in a text box, can someone help me please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pratyush&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replace-every-3rd-comma-with/m-p/1426233#M811618</guid>
      <dc:creator>prat1507</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Replace every 3rd comma with &amp;</title>
      <link>https://community.qlik.com/t5/QlikView/Replace-every-3rd-comma-with/m-p/1426234#M811619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe with something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;mid(Field, 1, index(Field, ',', 3) - 1) &amp;amp; '&amp;amp;' &amp;amp; mid(Field, index(Field, ',', 3) + 1)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;- Marcus&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Sep 2017 14:19:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replace-every-3rd-comma-with/m-p/1426234#M811619</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2017-09-27T14:19:03Z</dc:date>
    </item>
    <item>
      <title>Re: Replace every 3rd comma with &amp;</title>
      <link>https://community.qlik.com/t5/QlikView/Replace-every-3rd-comma-with/m-p/1426235#M811620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share how your string looks like?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Sep 2017 14:22:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replace-every-3rd-comma-with/m-p/1426235#M811620</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-09-27T14:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Replace every 3rd comma with &amp;</title>
      <link>https://community.qlik.com/t5/QlikView/Replace-every-3rd-comma-with/m-p/1426236#M811621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marc&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;This works only for the 3rd comma, I want it on 3rd, 6th, 9th and so on.....on every 3x comma.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;BR /&gt;Pratyush&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Sep 2017 14:34:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replace-every-3rd-comma-with/m-p/1426236#M811621</guid>
      <dc:creator>prat1507</dc:creator>
      <dc:date>2017-09-27T14:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: Replace every 3rd comma with &amp;</title>
      <link>https://community.qlik.com/t5/QlikView/Replace-every-3rd-comma-with/m-p/1426237#M811622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take any comma separated string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pratyush&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Sep 2017 14:34:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replace-every-3rd-comma-with/m-p/1426237#M811622</guid>
      <dc:creator>prat1507</dc:creator>
      <dc:date>2017-09-27T14:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: Replace every 3rd comma with &amp;</title>
      <link>https://community.qlik.com/t5/QlikView/Replace-every-3rd-comma-with/m-p/1426238#M811623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Concat(Mid(Dim,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Index(Dim, ',', 3 * (ValueLoop(1, Floor(SubStringCount(Dim, ',')/3)+1)-1)) + 1,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(If(Index(Dim, ',', 3 * (ValueLoop(1, Floor(SubStringCount(Dim, ',')/3)+1))) = 0, Len(Dim), Index(Dim, ',', 3 * (ValueLoop(1, Floor(SubStringCount(Dim, ',')/3)+1)))-1)-Index(Dim, ',', 3 * (ValueLoop(1, Floor(SubStringCount(Dim, ',')/3)+1)-1))))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;, '&amp;amp;', ValueLoop(1, Floor(SubStringCount(Dim, ',')/3)+1)) &lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Sep 2017 14:40:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replace-every-3rd-comma-with/m-p/1426238#M811623</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-09-27T14:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: Replace every 3rd comma with &amp;</title>
      <link>https://community.qlik.com/t5/QlikView/Replace-every-3rd-comma-with/m-p/1426239#M811624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sunny, worked as a miracle.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pratyush&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Sep 2017 14:44:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replace-every-3rd-comma-with/m-p/1426239#M811624</guid>
      <dc:creator>prat1507</dc:creator>
      <dc:date>2017-09-27T14:44:42Z</dc:date>
    </item>
  </channel>
</rss>

