<?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 compare two similar data sets using a chart function ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-compare-two-similar-data-sets-using-a-chart-function/m-p/108728#M510515</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For the above code, data should be in different files/sheet right ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should not be appended.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Aug 2018 10:45:48 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-08-07T10:45:48Z</dc:date>
    <item>
      <title>How to compare two similar data sets using a chart function ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-compare-two-similar-data-sets-using-a-chart-function/m-p/108724#M510511</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 have two data sets 'X' and 'Y' which are of similar data type having same header fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg; Data set 'X' is old data and 'Y' is the current refreshed data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I bring up these two data sets in a same bar graph next to each other as shown in the below snap?&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/209978_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shall I store the data in two separate files or shall I just append these two data sets in single file ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2018 13:43:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-compare-two-similar-data-sets-using-a-chart-function/m-p/108724#M510511</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-06T13:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare two similar data sets using a chart function ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-compare-two-similar-data-sets-using-a-chart-function/m-p/108725#M510512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you should be able to append the two data sources, but may be add a flag to differentiate between old and new.... and then you can use this flag as one of the dimensions....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2018 13:44:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-compare-two-similar-data-sets-using-a-chart-function/m-p/108725#M510512</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-08-06T13:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare two similar data sets using a chart function ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-compare-two-similar-data-sets-using-a-chart-function/m-p/108726#M510513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you plz elaborate more about the flag ? How to add it ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2018 13:48:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-compare-two-similar-data-sets-using-a-chart-function/m-p/108726#M510513</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-06T13:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare two similar data sets using a chart function ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-compare-two-similar-data-sets-using-a-chart-function/m-p/108727#M510514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure what is there to elaborate... but I can show you via a sample script... may be that will help clarify&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Data:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD blahblah...,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'OldData' as DataFlag&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM OldData;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate (Data)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD blahblah,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'NewData' as DataFlag&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM NewData;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now use DataFlag as your dimension&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2018 13:58:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-compare-two-similar-data-sets-using-a-chart-function/m-p/108727#M510514</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-08-06T13:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare two similar data sets using a chart function ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-compare-two-similar-data-sets-using-a-chart-function/m-p/108728#M510515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For the above code, data should be in different files/sheet right ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should not be appended.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2018 10:45:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-compare-two-similar-data-sets-using-a-chart-function/m-p/108728#M510515</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-07T10:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare two similar data sets using a chart function ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-compare-two-similar-data-sets-using-a-chart-function/m-p/108729#M510516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post some sample data???&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, 07 Aug 2018 10:50:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-compare-two-similar-data-sets-using-a-chart-function/m-p/108729#M510516</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2018-08-07T10:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare two similar data sets using a chart function ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-compare-two-similar-data-sets-using-a-chart-function/m-p/108730#M510517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure I understand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2018 11:01:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-compare-two-similar-data-sets-using-a-chart-function/m-p/108730#M510517</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-08-07T11:01:44Z</dc:date>
    </item>
  </channel>
</rss>

