<?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: How to convert a single row into multiple based on a delimiter condition in one particular column ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434276#M796706</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes&lt;/P&gt;&lt;P&gt;but when you add a delimiter you have to add the new delimiter in some place;&lt;/P&gt;&lt;P&gt;the place could be the .qvw or an include or an external (txt, csv) file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To make it dynamic you can try this:&lt;/P&gt;&lt;P&gt;- use the purgechar function on the Person field to remove all the a b c d ....&lt;/P&gt;&lt;P&gt;- with the remaining characters (distinct) build a mapping table as in my previous post&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Dec 2017 13:25:39 GMT</pubDate>
    <dc:creator>maxgro</dc:creator>
    <dc:date>2017-12-20T13:25:39Z</dc:date>
    <item>
      <title>How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434252#M796677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to convert a single row into multiple based on a delimiter condition in one particular column ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/187631_Capture.PNG" style="height: 219px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field Person has values delimited . But Delimiter type is not fixed .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Shekar&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/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434252#M796677</guid>
      <dc:creator>shekhar_analyti</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434253#M796678</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 try like this?&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_15137480818841780" jivemacro_uid="_15137480818841780"&gt;
&lt;P&gt;&lt;STRONG&gt;Fact:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;load *, Trim(SubField(SubField(SubField(Person, ','), '.'),'#')) as Person_Revised;&lt;/P&gt;
&lt;P&gt;LOAD Doornbr,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Person&lt;/P&gt;
&lt;P&gt;FROM&lt;/P&gt;
&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;
&lt;P&gt;(ooxml, embedded labels, table is AreaA);&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Concatenate&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;load *, Trim(SubField(SubField(SubField(Person, ','), '.'),'#')) as Person_Revised;&lt;/P&gt;
&lt;P&gt;LOAD Doornbr,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Person&lt;/P&gt;
&lt;P&gt;FROM&lt;/P&gt;
&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;
&lt;P&gt;(ooxml, embedded labels, table is AreaB);&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;IMG __jive_id="187629" alt="Capture.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/187629_Capture.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Hope this helps to you &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Close this thread by Marking helpful and correct. if might useful for other who is having similar issue. Tks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 05:32:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434253#M796678</guid>
      <dc:creator>devarasu07</dc:creator>
      <dc:date>2017-12-20T05:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434254#M796679</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;Can you please try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;LOAD DISTINCT&lt;/P&gt;&lt;P&gt;Doornbr,&lt;/P&gt;&lt;P&gt;Date,&lt;/P&gt;&lt;P&gt;SubField(SinglePerson2,'.') as SinglePerson;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Doornbr,&lt;/P&gt;&lt;P&gt;Date,&lt;/P&gt;&lt;P&gt;SubField(SinglePerson1,'#') as SinglePerson2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Doornbr,&lt;/P&gt;&lt;P&gt;Date,&lt;/P&gt;&lt;P&gt;SubField(Person,',') as SinglePerson1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Doornbr,Date,Person&lt;/P&gt;&lt;P&gt;22456,12/12/2017,"Sam,Krish,Tony"&lt;/P&gt;&lt;P&gt;22457,13/12/2017,"Sam,Bill.Munoj"&lt;/P&gt;&lt;P&gt;22458,14/12/2017,"Murphy#Linda"&lt;/P&gt;&lt;P&gt;22459,15/12/2017,"Numerov"&lt;/P&gt;&lt;P&gt;22459,12/12/2017,"Joy.Gracy"&lt;/P&gt;&lt;P&gt;22461,14/12/2017,"Tina#Deva"&lt;/P&gt;&lt;P&gt;22461,14/12/2017,"Tina#Deva"];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if it works,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Luis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 05:33:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434254#M796679</guid>
      <dc:creator>luismadriz</dc:creator>
      <dc:date>2017-12-20T05:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434255#M796680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shekhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load Doornbr,&lt;/P&gt;&lt;P&gt;Date,&lt;/P&gt;&lt;P&gt;subfield(replace(replace(replace(Person,',','|'),'#','|'),'.','|'),'|') as Person&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from excel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br,&lt;/P&gt;&lt;P&gt;KC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 05:33:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434255#M796680</guid>
      <dc:creator>jyothish8807</dc:creator>
      <dc:date>2017-12-20T05:33:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434256#M796681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dev ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for reply . Your solution is working fine with above sample data . But the problem i am facing is that delimiters are not just comma , hash or dot . Actually it varies within other special characters like (* , &amp;amp; , ^ , @ etc ) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So my requirement is to handle any of the delimiter dynamically .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Shekar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 06:47:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434256#M796681</guid>
      <dc:creator>shekhar_analyti</dc:creator>
      <dc:date>2017-12-20T06:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434257#M796682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for reply Luis . But in real data field delimiters &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt; are not just comma , hash or dot . Actually it varies within other special characters like (* , &amp;amp; , ^ , @ etc ) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;So my requirement is to handle any of the delimiter dynamically .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 06:52:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434257#M796682</guid>
      <dc:creator>shekhar_analyti</dc:creator>
      <dc:date>2017-12-20T06:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434258#M796683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;Hi,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Is it possible for you to list all possible delimiters in a string or characters?&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Such as this for example: ~!@#$%^&amp;amp;*()_+-=';":}{][\|?&amp;gt;&amp;lt;,./ &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;This is important because for example, is a space or a dash or an apostrophe or a number a delimiter?&amp;nbsp; &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;There could be a for-next loop that checks for all possible or not possible characters... but something needs to be provided&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Cheers, &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Luis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 07:05:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434258#M796683</guid>
      <dc:creator>luismadriz</dc:creator>
      <dc:date>2017-12-20T07:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434259#M796684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;.... Actually You have rightly mentioned . Apart from these ~!@#$%^&amp;amp;*()_+-=';":}{][\|?&amp;gt;&amp;lt;,./ ,I&amp;nbsp; noticed Space and hyphen as well . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes above all are my possible delimiters . &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 07:12:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434259#M796684</guid>
      <dc:creator>shekhar_analyti</dc:creator>
      <dc:date>2017-12-20T07:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434260#M796685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shekar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to use this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;subfield(Replace(Person,PurgeChar(Person,'abcdefghijklmnopqrstuvwxyz'),','),',') as YourNewPerson&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 07:37:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434260#M796685</guid>
      <dc:creator>mato32188</dc:creator>
      <dc:date>2017-12-20T07:37:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434261#M796686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;I am not really sure if that works .&lt;/SPAN&gt;Please attach sample . &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 07:43:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434261#M796686</guid>
      <dc:creator>shekhar_analyti</dc:creator>
      <dc:date>2017-12-20T07:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434262#M796687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good, is not that long of a list, you can then apply Deva's or KC's solutions. You're just going to have a long sentence&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only thing you need to remember is to add Distinct to the load to remove duplicates&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Luis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 07:45:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434262#M796687</guid>
      <dc:creator>luismadriz</dc:creator>
      <dc:date>2017-12-20T07:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434263#M796688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried that? Try to apply this logic in code above that have been provided by Devarasu R.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 07:46:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434263#M796688</guid>
      <dc:creator>mato32188</dc:creator>
      <dc:date>2017-12-20T07:46:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434264#M796689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use the mapsubstring to replace the delimiters&lt;/P&gt;&lt;P&gt;and then the sublfield&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;map2:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;mapping &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD * &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Inline [&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;From, To&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;~, @&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;!, @&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;@, @&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;#, @&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;., @&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;' ',@&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;',',@&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;-,@&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;] ;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;t1:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD * INLINE [&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Doornbr,Date,Person&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;22456,12/12/2017,"Sam,Krish,Tony"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;22457,13/12/2017,"Sam!Bill.Munoj"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;22458,14/12/2017,"Murphy#Linda"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;22459,15/12/2017,"Numerov"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;22459,12/12/2017,"Joy#Gracy"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;22461,14/12/2017,"Tina~Deva"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;22461,14/12/2017,"Tina.Deva"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;22461,14/12/2017,"aaa bbb"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;1,15/12/2017,"ccc-ddd"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;t2:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Productmodels:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;*,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Subfield(MapSubString('map2', Person), '@') as Person2&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Resident t1;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DROP Table t1;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;IMG alt="1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/187656_1.png" style="height: auto; width: auto;" /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 08:21:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434264#M796689</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2017-12-20T08:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434265#M796690</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;Below is what I was going to propose but it's not working properly and I'm not sure why. The order in which I create the string vDelimiters affects the results.&lt;/P&gt;&lt;P&gt;If I use vDelimiters = '.#,'; Then I get the 13 records as requested&lt;/P&gt;&lt;P&gt;but if I change it to &lt;SPAN style="font-size: 13.3333px;"&gt;vDelimiters = ',.#'; then I get 12 records&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;I may be missing something!!! Maybe someone else could troubleshoot because I need to go home now &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;vDelimiters = '&lt;SPAN style="font-size: 13.3333px;"&gt;.#,&lt;/SPAN&gt;';&lt;/P&gt;&lt;P&gt;For i = 1 to 3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; vChar = MID(vDelimiters,i,1);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Load Distinct Doornbr,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SubField(Person,'$(vChar)') as Person;&lt;/P&gt;&lt;P&gt;Next;&lt;/P&gt;&lt;P&gt;Load * Inline [&lt;/P&gt;&lt;P&gt;Doornbr,Date,Person&lt;/P&gt;&lt;P&gt;22456,12/12/2017,"Sam,Krish,Tony"&lt;/P&gt;&lt;P&gt;22457,13/12/2017,"Sam,Bill.Munoj"&lt;/P&gt;&lt;P&gt;22458,14/12/2017,"Murphy#Linda"&lt;/P&gt;&lt;P&gt;22459,15/12/2017,"Numerov"&lt;/P&gt;&lt;P&gt;22459,12/12/2017,"Joy.Gracy"&lt;/P&gt;&lt;P&gt;22461,14/12/2017,"Tina#Deva"&lt;/P&gt;&lt;P&gt;22461,14/12/2017,"Tina#Deva"];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 08:23:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434265#M796690</guid>
      <dc:creator>luismadriz</dc:creator>
      <dc:date>2017-12-20T08:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434266#M796691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Massimo . Please attach sample .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 09:12:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434266#M796691</guid>
      <dc:creator>shekhar_analyti</dc:creator>
      <dc:date>2017-12-20T09:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434267#M796692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this not a dependency ? Everytime i have to update this , if a new delimiter comes in picture&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;map2:&lt;/P&gt;&lt;P&gt;mapping&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;Inline [&lt;/P&gt;&lt;P&gt;From, To&lt;/P&gt;&lt;P&gt;~, @&lt;/P&gt;&lt;P&gt;!, @&lt;/P&gt;&lt;P&gt;@, @&lt;/P&gt;&lt;P&gt;#, @&lt;/P&gt;&lt;P&gt;., @&lt;/P&gt;&lt;P&gt;' ',@&lt;/P&gt;&lt;P&gt;',',@&lt;/P&gt;&lt;P&gt;-,@&lt;/P&gt;&lt;P&gt;] ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 09:16:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434267#M796692</guid>
      <dc:creator>shekhar_analyti</dc:creator>
      <dc:date>2017-12-20T09:16:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434268#M796693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please Help to make it dynamic .. &lt;A href="https://community.qlik.com/qlik-users/171708"&gt;stalwar1&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 12:20:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434268#M796693</guid>
      <dc:creator>shekhar_analyti</dc:creator>
      <dc:date>2017-12-20T12:20:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434269#M796694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What exactly do you mean when you say to make this dynamic?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 12:32:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434269#M796694</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-12-20T12:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434270#M796695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Sunny the for reply .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dynamic means ... irrespective of type of delimiter (which we have discussed) . script should handle it and generate output table as expected .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 12:43:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434270#M796695</guid>
      <dc:creator>shekhar_analyti</dc:creator>
      <dc:date>2017-12-20T12:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert a single row into multiple based on a delimiter condition in one particular column ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434271#M796696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; these ~!@#$%^&amp;amp;*()_+-=';":}{][\|?&amp;gt;&amp;lt;,./ , Space and hyphen as well &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 13:00:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-convert-a-single-row-into-multiple-based-on-a-delimiter/m-p/1434271#M796696</guid>
      <dc:creator>shekhar_analyti</dc:creator>
      <dc:date>2017-12-20T13:00:58Z</dc:date>
    </item>
  </channel>
</rss>

