<?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: Script input of two datasets with the same field names in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Script-input-of-two-datasets-with-the-same-field-names/m-p/725424#M539090</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes it is,&amp;nbsp; But can you please share a sample document.. &lt;/P&gt;&lt;P&gt;would be easy to Help you.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 06 Sep 2014 12:57:59 GMT</pubDate>
    <dc:creator>israrkhan</dc:creator>
    <dc:date>2014-09-06T12:57:59Z</dc:date>
    <item>
      <title>Script input of two datasets with the same field names</title>
      <link>https://community.qlik.com/t5/QlikView/Script-input-of-two-datasets-with-the-same-field-names/m-p/725418#M539084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to input two datasets with the same field names into a qvw file. The field names of them are the same but some of the data are different. I need to input both of them to do some expression calculations to create charts but I failed to do so. Could anyone give any suggestions on how to achieve this, please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Grace&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Sep 2014 12:24:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-input-of-two-datasets-with-the-same-field-names/m-p/725418#M539084</guid>
      <dc:creator />
      <dc:date>2014-09-06T12:24:36Z</dc:date>
    </item>
    <item>
      <title>Re: Script input of two datasets with the same field names</title>
      <link>https://community.qlik.com/t5/QlikView/Script-input-of-two-datasets-with-the-same-field-names/m-p/725419#M539085</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;select * from qvd1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from qvd2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The qvd2 data of the fields will concatenate with the fields data of qvd1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ajay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Sep 2014 12:30:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-input-of-two-datasets-with-the-same-field-names/m-p/725419#M539085</guid>
      <dc:creator>ajaykumar1</dc:creator>
      <dc:date>2014-09-06T12:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: Script input of two datasets with the same field names</title>
      <link>https://community.qlik.com/t5/QlikView/Script-input-of-two-datasets-with-the-same-field-names/m-p/725420#M539086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can concatenate both data sources in to one qvd, and than you can do the calculations simply...&lt;/P&gt;&lt;P&gt;and you can differentiate them, that which value coming from which data source, by loading like below...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;load 'Source1' as Source, * &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;from Source1;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;where condition ...&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;load &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;'Source2' as Source, * &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;from Source2;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;where condition ...&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;you dont nee to use concateneate keyword, because you said your fields name are same, it will be concatenated automatically, and you can use&amp;nbsp; the source field to know ,which value is coming from which source,....&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hope it helps...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Sep 2014 12:40:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-input-of-two-datasets-with-the-same-field-names/m-p/725420#M539086</guid>
      <dc:creator>israrkhan</dc:creator>
      <dc:date>2014-09-06T12:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: Script input of two datasets with the same field names</title>
      <link>https://community.qlik.com/t5/QlikView/Script-input-of-two-datasets-with-the-same-field-names/m-p/725421#M539087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please specifiy your requirements with some sample data / table structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have identical fieldnames containing different data, then concatenation might not make any sense. Instead you could rename the fields using the "as" statement during load or with "rename field(s)" after loading the first table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dependent of your data and requirements you would create a data model e.g. with associated fields or combination of your two tables into one (using joins).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it all depends on your data and requirements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Sep 2014 12:47:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-input-of-two-datasets-with-the-same-field-names/m-p/725421#M539087</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-09-06T12:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: Script input of two datasets with the same field names</title>
      <link>https://community.qlik.com/t5/QlikView/Script-input-of-two-datasets-with-the-same-field-names/m-p/725422#M539088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Israr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your reply. May I ask you another quick question, please? If I applied CrossTable to a dataset by:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;DevelopmentTable:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;CrossTable&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DevelopmentQuarter&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DevelopmentP&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Load ......&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;from &lt;C&gt;&lt;/C&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;And then I loaded a second set of data into Qlikview, if I'm now going to right join them, which data name of the DevelopmentTable should I use, please?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;right &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;join&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;Load&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;UWYear&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DevelopmentQuarter&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DevelopmentP&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;From&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; DevelopmentTable;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;is incorrect?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Sep 2014 12:49:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-input-of-two-datasets-with-the-same-field-names/m-p/725422#M539088</guid>
      <dc:creator />
      <dc:date>2014-09-06T12:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: Script input of two datasets with the same field names</title>
      <link>https://community.qlik.com/t5/QlikView/Script-input-of-two-datasets-with-the-same-field-names/m-p/725423#M539089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marco,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have, say 50 fields of the two datasets with exactly the same data but 10 fields of completely different data. The difficulty is that I have to CrossTable the final 10 fields first and then do qlikview calculations of the first set of 10 fields divided by the second set of 10 fields. The reason that I cannot do calculations of each cell in Excel is that if so, I won't be able to apply filters, which are the previous 50 fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know how to resolve this, please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Grace&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Sep 2014 12:53:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-input-of-two-datasets-with-the-same-field-names/m-p/725423#M539089</guid>
      <dc:creator />
      <dc:date>2014-09-06T12:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: Script input of two datasets with the same field names</title>
      <link>https://community.qlik.com/t5/QlikView/Script-input-of-two-datasets-with-the-same-field-names/m-p/725424#M539090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes it is,&amp;nbsp; But can you please share a sample document.. &lt;/P&gt;&lt;P&gt;would be easy to Help you.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Sep 2014 12:57:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-input-of-two-datasets-with-the-same-field-names/m-p/725424#M539090</guid>
      <dc:creator>israrkhan</dc:creator>
      <dc:date>2014-09-06T12:57:59Z</dc:date>
    </item>
  </channel>
</rss>

