<?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 Using data from CSV in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Using-data-from-CSV/m-p/2468360#M99467</link>
    <description>&lt;P&gt;Hi!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My situation: I need to upload CSV file to Qlik Sense and then join it with data pulled from DB.&lt;BR /&gt;&lt;BR /&gt;I've managed to upload CSV file:&lt;BR /&gt;Data load editor -&amp;gt; Data connections -&amp;gt; Attached files -&amp;gt;and then select local file to upload&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Then in Data load editor created new section with this query:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;merchants_list:
LOAD
  *
FROM [lib://AttachedFiles/T&amp;amp;A Global Cashback Hitlist  - Sheet9 (1).csv]
(txt, codepage is 28591, embedded labels, delimiter is ',', msq);&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On this stage data loads successfully and I can use it to build the app.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But what I need is to use&amp;nbsp;&lt;EM&gt;merchant_list&amp;nbsp;&lt;/EM&gt;in a query like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;select * from p_tracking_affiliation_us_5y.breakage_recuperation br
join merhchnat_list on domain, market&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Where&amp;nbsp;p_tracking_affiliation_us_5y.breakage_recuperation - table in my database&lt;/P&gt;
&lt;P&gt;&amp;nbsp;How do I make it work?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 05 Jul 2024 15:14:53 GMT</pubDate>
    <dc:creator>ArtemZadorozhnyi</dc:creator>
    <dc:date>2024-07-05T15:14:53Z</dc:date>
    <item>
      <title>Using data from CSV</title>
      <link>https://community.qlik.com/t5/App-Development/Using-data-from-CSV/m-p/2468360#M99467</link>
      <description>&lt;P&gt;Hi!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My situation: I need to upload CSV file to Qlik Sense and then join it with data pulled from DB.&lt;BR /&gt;&lt;BR /&gt;I've managed to upload CSV file:&lt;BR /&gt;Data load editor -&amp;gt; Data connections -&amp;gt; Attached files -&amp;gt;and then select local file to upload&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Then in Data load editor created new section with this query:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;merchants_list:
LOAD
  *
FROM [lib://AttachedFiles/T&amp;amp;A Global Cashback Hitlist  - Sheet9 (1).csv]
(txt, codepage is 28591, embedded labels, delimiter is ',', msq);&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On this stage data loads successfully and I can use it to build the app.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But what I need is to use&amp;nbsp;&lt;EM&gt;merchant_list&amp;nbsp;&lt;/EM&gt;in a query like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;select * from p_tracking_affiliation_us_5y.breakage_recuperation br
join merhchnat_list on domain, market&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Where&amp;nbsp;p_tracking_affiliation_us_5y.breakage_recuperation - table in my database&lt;/P&gt;
&lt;P&gt;&amp;nbsp;How do I make it work?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2024 15:14:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-data-from-CSV/m-p/2468360#M99467</guid>
      <dc:creator>ArtemZadorozhnyi</dc:creator>
      <dc:date>2024-07-05T15:14:53Z</dc:date>
    </item>
    <item>
      <title>Re: Using data from CSV</title>
      <link>https://community.qlik.com/t5/App-Development/Using-data-from-CSV/m-p/2468366#M99468</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/288501"&gt;@ArtemZadorozhnyi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you can use the JOIN clause with a loaded table.&lt;/P&gt;
&lt;P&gt;Here you will find the details and some examples:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense/May2024/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptPrefixes/Join.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense/May2024/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptPrefixes/Join.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Fabiano&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2024 16:11:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-data-from-CSV/m-p/2468366#M99468</guid>
      <dc:creator>Fabiano_Martino_Intelco</dc:creator>
      <dc:date>2024-07-05T16:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: Using data from CSV</title>
      <link>https://community.qlik.com/t5/App-Development/Using-data-from-CSV/m-p/2468376#M99469</link>
      <description>&lt;P&gt;It did work but in a weird way:&lt;BR /&gt;in the target table I have 2 columns: domain, market (table1)&lt;BR /&gt;in reference data set 3 columns: domain, market, marker&amp;nbsp;(table2)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ArtemZadorozhnyi_0-1720198992840.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/168978i44D733693A0F50EF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ArtemZadorozhnyi_0-1720198992840.png" alt="ArtemZadorozhnyi_0-1720198992840.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;After running this ^ I was expecting table1 to be enriched with 'marker' from table2 based on domain and market, but instead I got this:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ArtemZadorozhnyi_1-1720199149255.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/168979i822699EFD608F76B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ArtemZadorozhnyi_1-1720199149255.png" alt="ArtemZadorozhnyi_1-1720199149255.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Not sure how to make it work in a correct way&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2024 17:06:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-data-from-CSV/m-p/2468376#M99469</guid>
      <dc:creator>ArtemZadorozhnyi</dc:creator>
      <dc:date>2024-07-05T17:06:30Z</dc:date>
    </item>
  </channel>
</rss>

