<?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 load my data the right way in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-my-data-the-right-way/m-p/1950132#M10994</link>
    <description>&lt;P&gt;It works thanks ! &lt;BR /&gt;Other question, how to load a constant number field ?&lt;/P&gt;
&lt;P&gt;I tried with Load 1 as "FieldName" but it does not work&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 30 Jun 2022 08:55:03 GMT</pubDate>
    <dc:creator>lucas3</dc:creator>
    <dc:date>2022-06-30T08:55:03Z</dc:date>
    <item>
      <title>How to load my data the right way</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-my-data-the-right-way/m-p/1949806#M10990</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;I am loading a bunch of data from an excel file into qliksense&lt;/P&gt;
&lt;P&gt;I have a column named "Account Name" and another one named "Account Numbers Strings" which contains data of this form: "A|B|C|D|E|F|G"&lt;BR /&gt;where A, B, C, etc are valuable informations (actually accounts numbers).&lt;/P&gt;
&lt;P&gt;In one cell, I have no fixed ammount of information, I can have just "A", "A|B|C" or "A|...|Z|AA|..|AZ|BA|........" with no fixed limit.&lt;/P&gt;
&lt;P&gt;I am wondering how to load my data in such a way that I have only 2 fields: "Account Name" and "Account Number", where "Account Number" can contain only one Account Number&lt;/P&gt;
&lt;P&gt;Is that feasible in QlikSense without touching my Excel file ?&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 14:56:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-my-data-the-right-way/m-p/1949806#M10990</guid>
      <dc:creator>lucas3</dc:creator>
      <dc:date>2022-06-29T14:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to load my data the right way</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-my-data-the-right-way/m-p/1949825#M10992</link>
      <description>&lt;P&gt;It could be done with subfield(), like:&lt;/P&gt;
&lt;P&gt;load AccountName, subfield(AccountString, '|') as AccountNumber&lt;BR /&gt;from Excel;&lt;/P&gt;
&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 15:38:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-my-data-the-right-way/m-p/1949825#M10992</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2022-06-29T15:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to load my data the right way</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-my-data-the-right-way/m-p/1950132#M10994</link>
      <description>&lt;P&gt;It works thanks ! &lt;BR /&gt;Other question, how to load a constant number field ?&lt;/P&gt;
&lt;P&gt;I tried with Load 1 as "FieldName" but it does not work&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jun 2022 08:55:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-my-data-the-right-way/m-p/1950132#M10994</guid>
      <dc:creator>lucas3</dc:creator>
      <dc:date>2022-06-30T08:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to load my data the right way</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-my-data-the-right-way/m-p/1950184#M10996</link>
      <description>&lt;P&gt;The following counter-fields might be useful in your case:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;load &lt;BR /&gt;&amp;nbsp; &amp;nbsp;recno() as &lt;STRONG&gt;RecNo&lt;/STRONG&gt;, rowno() as &lt;STRONG&gt;RowNo&lt;/STRONG&gt;, iterno() as &lt;STRONG&gt;IterNo&lt;/STRONG&gt;,&lt;BR /&gt;&amp;nbsp; &amp;nbsp;AccountName, subfield(AccountString &lt;STRONG&gt;&amp;amp; '|', '|', iterno()&lt;/STRONG&gt;) as AccountNumber&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;from Excel&lt;BR /&gt;&lt;STRONG&gt;while iterno() &amp;lt;= substringcount(AccountString, '|') + 1&lt;/STRONG&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Subfield() is now specified with 3 parameters what disabled the loop-functionality of it and this feature is added per while-loop which enables the possibility to use iterno() as a counter.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jun 2022 10:14:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/How-to-load-my-data-the-right-way/m-p/1950184#M10996</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2022-06-30T10:14:31Z</dc:date>
    </item>
  </channel>
</rss>

