<?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: Create field challenge in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Create-field-challenge/m-p/1135696#M897394</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hope, its too simple, no need looping, just SubField(City, ',')&amp;amp;'|'&amp;amp;SubField(Center, ',') as key &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Jul 2016 07:15:54 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-07-25T07:15:54Z</dc:date>
    <item>
      <title>Create field challenge</title>
      <link>https://community.qlik.com/t5/QlikView/Create-field-challenge/m-p/1135692#M897385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Capture.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/132306_Capture.JPG" style="height: auto; width: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Hi all, I have an excel contains two fields, wanna create a new field when loading it into qlikview like the one shown at the below, i have thought about looping and subfield, but still fail after a couple of try. Any ideas? Thanks&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/Create-field-challenge/m-p/1135692#M897385</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Create field challenge</title>
      <link>https://community.qlik.com/t5/QlikView/Create-field-challenge/m-p/1135693#M897389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace(Center,',','|')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2016 07:10:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-field-challenge/m-p/1135693#M897389</guid>
      <dc:creator>arulsettu</dc:creator>
      <dc:date>2016-07-25T07:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: Create field challenge</title>
      <link>https://community.qlik.com/t5/QlikView/Create-field-challenge/m-p/1135694#M897391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG style="font-size: 10pt;"&gt;LOAD&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp; &lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;SubField&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;City&lt;/SPAN&gt;,',')&amp;amp;'|'&amp;amp;&lt;SPAN style="color: #0000ff;"&gt;SubField&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;Center&lt;/SPAN&gt;,',') &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Key&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;Inline&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;[&lt;BR /&gt; City,Center&lt;BR /&gt; 'A,B','aa,bb'&lt;BR /&gt; 'C,D','cc,yy'&lt;BR /&gt; 'E,F','dd,zz'&lt;BR /&gt; ]&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;; &lt;/SPAN&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/132321_pastedImage_1.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2016 07:15:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-field-challenge/m-p/1135694#M897391</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2016-07-25T07:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: Create field challenge</title>
      <link>https://community.qlik.com/t5/QlikView/Create-field-challenge/m-p/1135695#M897392</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 am not sure what are you looking for&lt;/P&gt;&lt;P&gt;try this &lt;/P&gt;&lt;P&gt;LOAD subfield(City,',') &amp;amp;'|'&amp;amp; subfield(Center,',') as key&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[key test.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2016 07:15:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-field-challenge/m-p/1135695#M897392</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2016-07-25T07:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: Create field challenge</title>
      <link>https://community.qlik.com/t5/QlikView/Create-field-challenge/m-p/1135696#M897394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hope, its too simple, no need looping, just SubField(City, ',')&amp;amp;'|'&amp;amp;SubField(Center, ',') as key &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2016 07:15:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-field-challenge/m-p/1135696#M897394</guid>
      <dc:creator />
      <dc:date>2016-07-25T07:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Create field challenge</title>
      <link>https://community.qlik.com/t5/QlikView/Create-field-challenge/m-p/1135697#M897397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to use subfield, you can try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Test:&lt;/P&gt;&lt;P&gt;Load *, City &amp;amp; '|' &amp;amp; Center as key ;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;Subfield(Center,',') as Center,&lt;/P&gt;&lt;P&gt;Subfield(City,',') as City&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[.\key test.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2016 07:17:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-field-challenge/m-p/1135697#M897397</guid>
      <dc:creator />
      <dc:date>2016-07-25T07:17:57Z</dc:date>
    </item>
  </channel>
</rss>

