<?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: vizualization question in Water Cooler</title>
    <link>https://community.qlik.com/t5/Water-Cooler/vizualization-question/m-p/1826116#M12541</link>
    <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/146775"&gt;@rukunobu&lt;/a&gt;&amp;nbsp;Are you using Qlik Sense or QlikView? I would like to move this into the correct product forum. Thank you.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 02 Aug 2021 14:53:15 GMT</pubDate>
    <dc:creator>Sue_Macaluso</dc:creator>
    <dc:date>2021-08-02T14:53:15Z</dc:date>
    <item>
      <title>vizualization question</title>
      <link>https://community.qlik.com/t5/Water-Cooler/vizualization-question/m-p/1826036#M12538</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have a following requirement.&lt;/P&gt;
&lt;P&gt;Table 1 - 150 columns&lt;/P&gt;
&lt;P&gt;Table 2 - 150 columns (same columns as table 1)&lt;/P&gt;
&lt;P&gt;I need to compare these two tables and check if there are any values for these 150 columns that differ at a given minimum and maximum date selection.&lt;/P&gt;
&lt;P&gt;Need help with edit script about how to process this data and also how can I visualize this?&lt;/P&gt;
&lt;P&gt;Any suggestion would be a great help! Thanks in advance.&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV class="simple-translate-button "&gt;I highly recommend one of the best gay porn sites I've seen &lt;A href="https://gotgaytubeporn.com/en/" target="_blank"&gt;https://gotgaytubeporn.com/en/&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV class="simple-translate-panel "&gt;
&lt;DIV class="simple-translate-result-wrapper"&gt;
&lt;P class="simple-translate-result"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="simple-translate-candidate"&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV id="simple-translate"&gt;
&lt;DIV&gt;
&lt;DIV class="simple-translate-button " style="background-image: url('moz-extension://1f7167ca-1b38-4193-a1da-e0f22bbb6855/icons/512.png'); height: 22px; width: 22px; top: 10px; left: 10px;"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="simple-translate-panel " style="width: 300px; height: 200px; top: 0px; left: 0px; font-size: 13px; background-color: #ffffff;"&gt;
&lt;DIV class="simple-translate-result-wrapper" style="overflow: hidden;"&gt;
&lt;P class="simple-translate-result" style="color: #000000;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="simple-translate-candidate" style="color: #737373;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 08 Dec 2021 05:51:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/vizualization-question/m-p/1826036#M12538</guid>
      <dc:creator>rukunobu</dc:creator>
      <dc:date>2021-12-08T05:51:40Z</dc:date>
    </item>
    <item>
      <title>Re: vizualization question</title>
      <link>https://community.qlik.com/t5/Water-Cooler/vizualization-question/m-p/1826037#M12539</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/146775"&gt;@rukunobu&lt;/a&gt;&amp;nbsp; can you share a sample data ( 3 or + columns) and the expected output ?&lt;/P&gt;</description>
      <pubDate>Mon, 02 Aug 2021 10:38:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/vizualization-question/m-p/1826037#M12539</guid>
      <dc:creator>Taoufiq_Zarra</dc:creator>
      <dc:date>2021-08-02T10:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: vizualization question</title>
      <link>https://community.qlik.com/t5/Water-Cooler/vizualization-question/m-p/1826048#M12540</link>
      <description>&lt;P&gt;This is kind of an ugly hack and I could probably clean it up, but (replacing Table1 and Table2 loads with your data), the following should work (adapted to your full list of fields of course).&lt;/P&gt;&lt;P&gt;Note that myCount lets you know which table the not-identical row is from - 1 is from table1, 2 is from table2.&lt;/P&gt;&lt;P&gt;Table1:&lt;BR /&gt;Load * INLINE [&lt;BR /&gt;Field1, Field2, Field3&lt;BR /&gt;A, B, C&lt;BR /&gt;1, 2, 3&lt;BR /&gt;E, F, G&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Table2:&lt;BR /&gt;NoConcatenate Load * Inline [&lt;BR /&gt;Field1, Field2, Field3&lt;BR /&gt;A, B, C&lt;BR /&gt;1, 4, 7&lt;BR /&gt;Z, Z, Z&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;myTable:&lt;BR /&gt;Noconcatenate Load *, '1' as Source Resident Table1;&lt;BR /&gt;Concatenate(myTable)&lt;BR /&gt;Load *, '2' as Source Resident Table2;&lt;/P&gt;&lt;P&gt;Drop Table Table1;&lt;BR /&gt;Drop Table Table2;&lt;/P&gt;&lt;P&gt;MergedTable:&lt;BR /&gt;Load Field1, Field2, Field3, sum(Source) as myCount&lt;BR /&gt;Resident myTable&lt;BR /&gt;GROUP BY Field1, Field2, Field3;&lt;/P&gt;&lt;P&gt;Drop Table myTable;&lt;/P&gt;&lt;P&gt;FinalTable:&lt;BR /&gt;Noconcatenate Load *&lt;BR /&gt;Resident MergedTable&lt;BR /&gt;WHERE myCount &amp;lt;3;&lt;/P&gt;&lt;P&gt;Drop table MergedTable;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Aug 2021 11:04:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/vizualization-question/m-p/1826048#M12540</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2021-08-02T11:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: vizualization question</title>
      <link>https://community.qlik.com/t5/Water-Cooler/vizualization-question/m-p/1826116#M12541</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/146775"&gt;@rukunobu&lt;/a&gt;&amp;nbsp;Are you using Qlik Sense or QlikView? I would like to move this into the correct product forum. Thank you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Aug 2021 14:53:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/vizualization-question/m-p/1826116#M12541</guid>
      <dc:creator>Sue_Macaluso</dc:creator>
      <dc:date>2021-08-02T14:53:15Z</dc:date>
    </item>
  </channel>
</rss>

