<?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: is there a function to un-concat a field during data load? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/is-there-a-function-to-un-concat-a-field-during-data-load/m-p/2080339#M88616</link>
    <description>Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/47012"&gt;@daveatkins&lt;/a&gt;, &lt;BR /&gt;&lt;BR /&gt;Please try this:&lt;BR /&gt;&lt;BR /&gt;Table1:&lt;BR /&gt;Load * Inline [&lt;BR /&gt;Sales person, regions&lt;BR /&gt;Dave, "North, West"&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;FinalResult:&lt;BR /&gt;NoConcatenate&lt;BR /&gt;Load &lt;BR /&gt;  [Sales person],&lt;BR /&gt;  SubField(regions,',') as region&lt;BR /&gt;Resident Table1;&lt;BR /&gt;Drop Table Table1;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Hector</description>
    <pubDate>Mon, 05 Jun 2023 23:11:40 GMT</pubDate>
    <dc:creator>hjimenez</dc:creator>
    <dc:date>2023-06-05T23:11:40Z</dc:date>
    <item>
      <title>is there a function to un-concat a field during data load?</title>
      <link>https://community.qlik.com/t5/App-Development/is-there-a-function-to-un-concat-a-field-during-data-load/m-p/2080269#M88611</link>
      <description>&lt;P&gt;example source input data:&lt;/P&gt;
&lt;P&gt;sales person, regions&lt;/P&gt;
&lt;P&gt;Dave, "North, West"&lt;/P&gt;
&lt;P&gt;desired load is 2 rows:&lt;/P&gt;
&lt;P&gt;sales person, region&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Dave, North&lt;/P&gt;
&lt;P&gt;Dave, West&lt;/P&gt;
&lt;P&gt;This is the opposite function of concat(region,',')&lt;/P&gt;
&lt;P&gt;purpose is to simplify data entry spreadsheet so users do not have to create multiple rows&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2023 17:33:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/is-there-a-function-to-un-concat-a-field-during-data-load/m-p/2080269#M88611</guid>
      <dc:creator>daveatkins</dc:creator>
      <dc:date>2023-06-05T17:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: is there a function to un-concat a field during data load?</title>
      <link>https://community.qlik.com/t5/App-Development/is-there-a-function-to-un-concat-a-field-during-data-load/m-p/2080285#M88612</link>
      <description>&lt;P&gt;there is no unconcatenate function, the closest is subfield.&amp;nbsp; as there is no indication how many components will be needed, i suggest use combination of subfield and the cosstab feature:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;data:
load person, subfield(regions,',',1) as region1, subfield(regions,',',2) as region2;
load 'Dave' as person, 'North,West' as regions
AutoGenerate(1);

newData:
//load person, Region;
crosstable(regionType, region)
load * resident data;

drop table data;
data:
load person, region resident newData;

drop table newData;&lt;/LI-CODE&gt;
&lt;P&gt;the first part is just to start the data table but you will not need that and just point to your table.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2023 18:39:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/is-there-a-function-to-un-concat-a-field-during-data-load/m-p/2080285#M88612</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2023-06-05T18:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: is there a function to un-concat a field during data load?</title>
      <link>https://community.qlik.com/t5/App-Development/is-there-a-function-to-un-concat-a-field-during-data-load/m-p/2080332#M88615</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/47012"&gt;@daveatkins&lt;/a&gt;&amp;nbsp; subfield is the function for you&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;load person, 
     subfield(regions,',') as region
FROM Source;&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 05 Jun 2023 22:33:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/is-there-a-function-to-un-concat-a-field-during-data-load/m-p/2080332#M88615</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2023-06-05T22:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: is there a function to un-concat a field during data load?</title>
      <link>https://community.qlik.com/t5/App-Development/is-there-a-function-to-un-concat-a-field-during-data-load/m-p/2080339#M88616</link>
      <description>Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/47012"&gt;@daveatkins&lt;/a&gt;, &lt;BR /&gt;&lt;BR /&gt;Please try this:&lt;BR /&gt;&lt;BR /&gt;Table1:&lt;BR /&gt;Load * Inline [&lt;BR /&gt;Sales person, regions&lt;BR /&gt;Dave, "North, West"&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;FinalResult:&lt;BR /&gt;NoConcatenate&lt;BR /&gt;Load &lt;BR /&gt;  [Sales person],&lt;BR /&gt;  SubField(regions,',') as region&lt;BR /&gt;Resident Table1;&lt;BR /&gt;Drop Table Table1;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Hector</description>
      <pubDate>Mon, 05 Jun 2023 23:11:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/is-there-a-function-to-un-concat-a-field-during-data-load/m-p/2080339#M88616</guid>
      <dc:creator>hjimenez</dc:creator>
      <dc:date>2023-06-05T23:11:40Z</dc:date>
    </item>
  </channel>
</rss>

