<?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: split comma separated values in column into rows in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/split-comma-separated-values-in-column-into-rows/m-p/2480467#M1226070</link>
    <description>&lt;P&gt;Does this work only in the load data space??&lt;BR /&gt;&lt;BR /&gt;Can it work in the expression space for an individual visualization?&lt;BR /&gt;&lt;BR /&gt;I tried plugging in '=SubField(Capitalize(Trim([Field 1])), ',')'.....but it only returned the 1st value in the {&lt;SPAN&gt;Bread,Biscuit,Chocolate&lt;/SPAN&gt;} --&amp;gt; i.e, only returned Bread instead of outputting all 3 in separate rows&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 09 Sep 2024 12:31:17 GMT</pubDate>
    <dc:creator>AFE</dc:creator>
    <dc:date>2024-09-09T12:31:17Z</dc:date>
    <item>
      <title>split comma separated values in column into rows</title>
      <link>https://community.qlik.com/t5/QlikView/split-comma-separated-values-in-column-into-rows/m-p/1147644#M907513</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;I have data like below in excel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Group_Id&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Items&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Bread,Biscuit,Chocolate&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Jean,Shirt,Shoes&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to load above as below mentioned table structure in data model&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Group_Id&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Items&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Bread&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Biscuit&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Chocolate&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Jean&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Shirt&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Shoes&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&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/split-comma-separated-values-in-column-into-rows/m-p/1147644#M907513</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: split comma separated values in column into rows</title>
      <link>https://community.qlik.com/t5/QlikView/split-comma-separated-values-in-column-into-rows/m-p/1147645#M907514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be as attached:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Source_Data:&lt;/P&gt;&lt;P&gt;Load * Inline [&lt;/P&gt;&lt;P&gt;Group_Id,Items&lt;/P&gt;&lt;P&gt;1,"Bread,Biscuit,Chocolate"&lt;/P&gt;&lt;P&gt;2,"Jean,Shirt,Shoes"&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;Group_Id, &lt;/P&gt;&lt;P&gt;SubField(Items,',') as Items&lt;/P&gt;&lt;P&gt;Resident Source_Data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table Source_Data;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Jun 2016 11:59:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/split-comma-separated-values-in-column-into-rows/m-p/1147645#M907514</guid>
      <dc:creator>trdandamudi</dc:creator>
      <dc:date>2016-06-19T11:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: split comma separated values in column into rows</title>
      <link>https://community.qlik.com/t5/QlikView/split-comma-separated-values-in-column-into-rows/m-p/1147646#M907515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Script&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;Table:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;STRONG style=": ; color: #0000ff;"&gt;LOAD&lt;/STRONG&gt; &lt;SPAN style="color: #800000;"&gt;Group_Id&lt;/SPAN&gt;, &lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;SubField&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;Items&lt;/SPAN&gt;,',') &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt;&lt;BR /&gt; File&lt;BR /&gt; (&lt;SPAN style="color: #0000ff;"&gt;html&lt;/SPAN&gt;, &lt;SPAN style="color: #0000ff;"&gt;codepage&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;is&lt;/SPAN&gt; 1252, &lt;SPAN style="color: #0000ff;"&gt;embedded&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;labels&lt;/SPAN&gt;, &lt;SPAN style="color: #0000ff;"&gt;table&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;is&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; @1); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/128438_pastedImage_1.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Antonio&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Jun 2016 12:03:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/split-comma-separated-values-in-column-into-rows/m-p/1147646#M907515</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2016-06-19T12:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: split comma separated values in column into rows</title>
      <link>https://community.qlik.com/t5/QlikView/split-comma-separated-values-in-column-into-rows/m-p/1147647#M907516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Antonio,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 60 fields in my application out of which 32 of them are comma separated and I want each of those comma separated fields to be&amp;nbsp; split into different rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the best practice?&lt;/P&gt;&lt;P&gt;1. To use&amp;nbsp; &lt;SPAN style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;SubField&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Field1&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;,',') &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; Field1&amp;nbsp; for each of the 32 fields? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;2. To have the Subfield for each of those feilds done in the application level or to be done while generating the QVD?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;When I tried either of the option, I am getting error: &lt;STRONG&gt;Request ran out of memory&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;3. Does using the SubField() have any performance issue because of using it times in one application?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise&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;Regards&lt;/P&gt;&lt;P&gt;Vindhya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2018 17:36:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/split-comma-separated-values-in-column-into-rows/m-p/1147647#M907516</guid>
      <dc:creator>vindhya_giri</dc:creator>
      <dc:date>2018-08-09T17:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: split comma separated values in column into rows</title>
      <link>https://community.qlik.com/t5/QlikView/split-comma-separated-values-in-column-into-rows/m-p/1665508#M907517</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is I have way more unique items and combinations in one cell? How can I copy and load inline all of it? ot there is other solution?&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2020 17:09:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/split-comma-separated-values-in-column-into-rows/m-p/1665508#M907517</guid>
      <dc:creator>Roman_S</dc:creator>
      <dc:date>2020-01-14T17:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: split comma separated values in column into rows</title>
      <link>https://community.qlik.com/t5/QlikView/split-comma-separated-values-in-column-into-rows/m-p/1723582#M907518</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;As of this example, Subfield is working for me. Like showing comma seperated values in different rows.&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, My Issue here is Iam getting duplicate values. each values twice.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example:&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used Subfield(Item,',') in Expression sheet. I am getting values like bread&lt;/P&gt;&lt;P&gt;bread&lt;/P&gt;&lt;P&gt;bread&lt;/P&gt;&lt;P&gt;biscuit&amp;nbsp;&lt;/P&gt;&lt;P&gt;biscuit ...etc..&lt;/P&gt;&lt;P&gt;Please help me with this&lt;/P&gt;&lt;P&gt;Thanks in advance.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jun 2020 14:42:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/split-comma-separated-values-in-column-into-rows/m-p/1723582#M907518</guid>
      <dc:creator>Sai_Mohan</dc:creator>
      <dc:date>2020-06-30T14:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: split comma separated values in column into rows</title>
      <link>https://community.qlik.com/t5/QlikView/split-comma-separated-values-in-column-into-rows/m-p/2480467#M1226070</link>
      <description>&lt;P&gt;Does this work only in the load data space??&lt;BR /&gt;&lt;BR /&gt;Can it work in the expression space for an individual visualization?&lt;BR /&gt;&lt;BR /&gt;I tried plugging in '=SubField(Capitalize(Trim([Field 1])), ',')'.....but it only returned the 1st value in the {&lt;SPAN&gt;Bread,Biscuit,Chocolate&lt;/SPAN&gt;} --&amp;gt; i.e, only returned Bread instead of outputting all 3 in separate rows&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 12:31:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/split-comma-separated-values-in-column-into-rows/m-p/2480467#M1226070</guid>
      <dc:creator>AFE</dc:creator>
      <dc:date>2024-09-09T12:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: split comma separated values in column into rows</title>
      <link>https://community.qlik.com/t5/QlikView/split-comma-separated-values-in-column-into-rows/m-p/2480468#M1226071</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Does this work only in the load data space??&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can it work in the expression space for an individual visualization?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried plugging in '=SubField(Capitalize(Trim([Field 1])), ',')'.....but it only returned the 1st value in the {&lt;/SPAN&gt;&lt;SPAN&gt;Bread,Biscuit,Chocolate&lt;/SPAN&gt;&lt;SPAN&gt;} --&amp;gt; i.e, only returned Bread instead of outputting all 3 in separate rows&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 12:32:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/split-comma-separated-values-in-column-into-rows/m-p/2480468#M1226071</guid>
      <dc:creator>AFE</dc:creator>
      <dc:date>2024-09-09T12:32:06Z</dc:date>
    </item>
  </channel>
</rss>

