<?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 QlikView Script in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/QlikView-Script/m-p/2008316#M83406</link>
    <description>&lt;P&gt;*english below*&lt;/P&gt;
&lt;P&gt;Hallo zusammen,&lt;BR /&gt;ich hab mal eine Frage und zwar habe ich verschiedene CSV-Dateien die ich in einem View zusammmenführen möchte.&lt;BR /&gt;Es sind zwei Ordner mit CSV mit zwei Häusern. Die CSV-Dateien der Häuser sind gleich aufgebaut (Daten aus Haus 1 und Haus 2).&lt;/P&gt;
&lt;P&gt;Wie kann ich diese CSV-Dateien am besten im Skript laden ohne Sync-Keys zu erzeugen?&lt;BR /&gt;Wie kann ich zu einer bestehenden CSV-Datei im Skript noch eine Dimension ergänzen?&lt;BR /&gt;(Als Beispiel: wenn die Hausbezeichnung in der CSV-Datei nicht vorhanden ist, diese aber zu ergänzen ist; alle Daten aus Haus 1 soll als Dimension ergänzt werden mit dem Wert: "Haus1")&lt;/P&gt;
&lt;P&gt;Danke schon mal für die Rückmeldung.&lt;/P&gt;
&lt;P&gt;Gruß GENClik60&lt;/P&gt;
&lt;P&gt;*English*&lt;/P&gt;
&lt;P&gt;Hello, everyone,&lt;BR /&gt;I have a question and I have different CSV files that I want to merge into one view.&lt;BR /&gt;It's two folders with CSV with two houses. The CSV files of the houses have the same structure (data from house 1 and house 2).&lt;BR /&gt;How can I best load these CSV files in the script without generating sync keys?&lt;BR /&gt;How can I add a dimension to an existing CSV file in the script?&lt;BR /&gt;(As an example: if the house name is not available in the CSV file, but it needs to be added; all data from house 1 should be added as a dimension with the value: "House1")&lt;BR /&gt;Thanks in advance for the feedback.&lt;/P&gt;</description>
    <pubDate>Wed, 23 Nov 2022 15:15:55 GMT</pubDate>
    <dc:creator>GENClik60</dc:creator>
    <dc:date>2022-11-23T15:15:55Z</dc:date>
    <item>
      <title>QlikView Script</title>
      <link>https://community.qlik.com/t5/App-Development/QlikView-Script/m-p/2008316#M83406</link>
      <description>&lt;P&gt;*english below*&lt;/P&gt;
&lt;P&gt;Hallo zusammen,&lt;BR /&gt;ich hab mal eine Frage und zwar habe ich verschiedene CSV-Dateien die ich in einem View zusammmenführen möchte.&lt;BR /&gt;Es sind zwei Ordner mit CSV mit zwei Häusern. Die CSV-Dateien der Häuser sind gleich aufgebaut (Daten aus Haus 1 und Haus 2).&lt;/P&gt;
&lt;P&gt;Wie kann ich diese CSV-Dateien am besten im Skript laden ohne Sync-Keys zu erzeugen?&lt;BR /&gt;Wie kann ich zu einer bestehenden CSV-Datei im Skript noch eine Dimension ergänzen?&lt;BR /&gt;(Als Beispiel: wenn die Hausbezeichnung in der CSV-Datei nicht vorhanden ist, diese aber zu ergänzen ist; alle Daten aus Haus 1 soll als Dimension ergänzt werden mit dem Wert: "Haus1")&lt;/P&gt;
&lt;P&gt;Danke schon mal für die Rückmeldung.&lt;/P&gt;
&lt;P&gt;Gruß GENClik60&lt;/P&gt;
&lt;P&gt;*English*&lt;/P&gt;
&lt;P&gt;Hello, everyone,&lt;BR /&gt;I have a question and I have different CSV files that I want to merge into one view.&lt;BR /&gt;It's two folders with CSV with two houses. The CSV files of the houses have the same structure (data from house 1 and house 2).&lt;BR /&gt;How can I best load these CSV files in the script without generating sync keys?&lt;BR /&gt;How can I add a dimension to an existing CSV file in the script?&lt;BR /&gt;(As an example: if the house name is not available in the CSV file, but it needs to be added; all data from house 1 should be added as a dimension with the value: "House1")&lt;BR /&gt;Thanks in advance for the feedback.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Nov 2022 15:15:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/QlikView-Script/m-p/2008316#M83406</guid>
      <dc:creator>GENClik60</dc:creator>
      <dc:date>2022-11-23T15:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView Script</title>
      <link>https://community.qlik.com/t5/App-Development/QlikView-Script/m-p/2008338#M83409</link>
      <description>&lt;P&gt;It's quite simple - just concatenating the data, like:&lt;/P&gt;
&lt;P&gt;t: load *, filebasename() as Haus from path\csv1.csv (txt);&lt;BR /&gt;concatenate(t)&amp;nbsp;load *, filebasename() as Haus from path\csv2.csv (txt);&lt;/P&gt;
&lt;P&gt;Instead of filebasename() you may also add the needed information manually.&lt;/P&gt;
&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Wed, 23 Nov 2022 15:46:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/QlikView-Script/m-p/2008338#M83409</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2022-11-23T15:46:00Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView Script</title>
      <link>https://community.qlik.com/t5/App-Development/QlikView-Script/m-p/2008699#M83439</link>
      <description>&lt;P&gt;Hello Marcus,&lt;/P&gt;
&lt;P&gt;Thanks for the reply, I managed to merge the tables now.&lt;BR /&gt;Can I manually add something to a table in the script?&lt;BR /&gt;There is no record with the "Status" field in the source file, I would add this manually.&lt;BR /&gt;As an example, if the source file is loaded from table 1, a field should be added with the field "Status=1".&lt;/P&gt;
&lt;P&gt;Thanks in advance &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;SPAN&gt;- GENClik60&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Nov 2022 10:27:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/QlikView-Script/m-p/2008699#M83439</guid>
      <dc:creator>GENClik60</dc:creator>
      <dc:date>2022-11-24T10:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView Script</title>
      <link>https://community.qlik.com/t5/App-Development/QlikView-Script/m-p/2008726#M83441</link>
      <description>&lt;P&gt;You could do it in this way:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;t: load *, filebasename() as Haus, &lt;STRONG&gt;1 as Status&lt;/STRONG&gt; from path\csv1.csv (txt);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;concatenate(t)&amp;nbsp;load *, filebasename() as Haus, &lt;STRONG&gt;0 as Status&lt;/STRONG&gt; from path\csv2.csv (txt);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Thu, 24 Nov 2022 10:46:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/QlikView-Script/m-p/2008726#M83441</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2022-11-24T10:46:53Z</dc:date>
    </item>
  </channel>
</rss>

