<?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: many files with same fields in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57362#M9538</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This must work..&lt;/P&gt;&lt;P&gt;do you have same data in both files????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take one field in list box &amp;amp; check its frequency.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Feb 2018 10:05:27 GMT</pubDate>
    <dc:creator>big_dreams</dc:creator>
    <dc:date>2018-02-08T10:05:27Z</dc:date>
    <item>
      <title>many files with same fields</title>
      <link>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57353#M9529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have many files with same field names and I want to load all the files into same table in qlikview script and all the data gets reflected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2018 11:12:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57353#M9529</guid>
      <dc:creator>navaneeth79</dc:creator>
      <dc:date>2018-02-06T11:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: many files with same fields</title>
      <link>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57354#M9530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what was your issue???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use concatenate to concate tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * from table1;&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;Load* from table2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and so on..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to loop it search for how to use loop in script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2018 11:27:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57354#M9530</guid>
      <dc:creator>big_dreams</dc:creator>
      <dc:date>2018-02-06T11:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: many files with same fields</title>
      <link>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57355#M9531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use For Next loop to load your files&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/3274"&gt;Loops in the Script&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Feb 2018 13:03:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57355#M9531</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-02-06T13:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: many files with same fields</title>
      <link>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57356#M9532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have few files for example 5 files with file name ABC_ddmmyyyy.xlsx where ddmmyyyy referes to date and this changes according to the file extraction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the code I used is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fileds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from(:path/ABC_*.xlsx);&lt;/P&gt;&lt;P&gt;but I can see data only from the first file&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Feb 2018 08:02:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57356#M9532</guid>
      <dc:creator>navaneeth79</dc:creator>
      <dc:date>2018-02-07T08:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: many files with same fields</title>
      <link>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57357#M9533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you using Drop statement everywhere?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The tables with same fields gets concatenated and will be dropped on a single drop statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this case use no concatenate before load script to keep the tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it Doesn't solve your problem then explain the issue in detail.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Feb 2018 08:07:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57357#M9533</guid>
      <dc:creator>techvarun</dc:creator>
      <dc:date>2018-02-07T08:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: many files with same fields</title>
      <link>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57358#M9534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the tab name in the excel sheet. it should be same to extract the data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Feb 2018 08:13:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57358#M9534</guid>
      <dc:creator>techvarun</dc:creator>
      <dc:date>2018-02-07T08:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: many files with same fields</title>
      <link>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57359#M9535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Share 2 or 3 files and may be we can show you how it can be done.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Feb 2018 12:18:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57359#M9535</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-02-07T12:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: many files with same fields</title>
      <link>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57360#M9536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post your entire script over here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your script add fileName() as fileName, So that you will get to know which file you are loading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2018 07:17:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57360#M9536</guid>
      <dc:creator>big_dreams</dc:creator>
      <dc:date>2018-02-08T07:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: many files with same fields</title>
      <link>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57361#M9537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I cant send the exact code but I will send the sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let say my files are ABC_02022018.xlsx and ABC_05022018.xlsx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my code is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Test:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;A,&lt;/P&gt;&lt;P&gt;B,&lt;/P&gt;&lt;P&gt;C,&lt;/P&gt;&lt;P&gt;D,&lt;/P&gt;&lt;P&gt;if(D&amp;lt;100,1,0) as E&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;from&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[$(vG.Path)\folder\ABC_*.xlsx]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;ooxml&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;embedded&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;labels&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;table&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;is&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Sheet1) &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2018 08:45:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57361#M9537</guid>
      <dc:creator>navaneeth79</dc:creator>
      <dc:date>2018-02-08T08:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: many files with same fields</title>
      <link>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57362#M9538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This must work..&lt;/P&gt;&lt;P&gt;do you have same data in both files????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take one field in list box &amp;amp; check its frequency.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2018 10:05:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57362#M9538</guid>
      <dc:creator>big_dreams</dc:creator>
      <dc:date>2018-02-08T10:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: many files with same fields</title>
      <link>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57363#M9539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;similar data with dates changed, and if I remove drop table all the data from all files getting loaded but not getting stored in qvd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2018 11:31:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57363#M9539</guid>
      <dc:creator>navaneeth79</dc:creator>
      <dc:date>2018-02-08T11:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: many files with same fields</title>
      <link>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57364#M9540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did you check data frequency??&lt;/P&gt;&lt;P&gt;If all data is same, then you will see double count of every value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2018 11:36:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57364#M9540</guid>
      <dc:creator>big_dreams</dc:creator>
      <dc:date>2018-02-08T11:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: many files with same fields</title>
      <link>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57365#M9541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data is unique data type is same&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2018 11:37:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57365#M9541</guid>
      <dc:creator>navaneeth79</dc:creator>
      <dc:date>2018-02-08T11:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: many files with same fields</title>
      <link>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57366#M9542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you share screen shot?? Now it is difficult to guess with limited information..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2018 11:40:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-files-with-same-fields/m-p/57366#M9542</guid>
      <dc:creator>big_dreams</dc:creator>
      <dc:date>2018-02-08T11:40:14Z</dc:date>
    </item>
  </channel>
</rss>

