<?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 Two different filters in two sheets in the same app in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Two-different-filters-in-two-sheets-in-the-same-app/m-p/2492463#M102192</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have two different data sets - one with current data and one with historical data but same column names.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Table 1 Current Data&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ColumnName1&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ColumnName2&lt;/P&gt;
&lt;P&gt;ColumnName3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Table2 Historical Data&lt;/P&gt;
&lt;P&gt;ColumnName1&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ColumnName2&lt;/P&gt;
&lt;P&gt;ColumnName3&lt;BR /&gt;&lt;BR /&gt;I want to load both tables into UI app but in Sheet 1 I want to display data for current data and Sheet 2 I want to display historical data.&lt;/P&gt;
&lt;P&gt;I want ColumnName1, ColumnName2 and ColumnName3 filters to be applied on both sheets(so I do not want to rename columns) but in Sheet one I would need a filter or logic applied to show only Current Data and on Sheet 2 to display historical data.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I do this or apply the filter on Sheets/ State of the sheet?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 13 Nov 2024 09:18:27 GMT</pubDate>
    <dc:creator>l26b</dc:creator>
    <dc:date>2024-11-13T09:18:27Z</dc:date>
    <item>
      <title>Two different filters in two sheets in the same app</title>
      <link>https://community.qlik.com/t5/App-Development/Two-different-filters-in-two-sheets-in-the-same-app/m-p/2492463#M102192</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have two different data sets - one with current data and one with historical data but same column names.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Table 1 Current Data&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ColumnName1&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ColumnName2&lt;/P&gt;
&lt;P&gt;ColumnName3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Table2 Historical Data&lt;/P&gt;
&lt;P&gt;ColumnName1&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ColumnName2&lt;/P&gt;
&lt;P&gt;ColumnName3&lt;BR /&gt;&lt;BR /&gt;I want to load both tables into UI app but in Sheet 1 I want to display data for current data and Sheet 2 I want to display historical data.&lt;/P&gt;
&lt;P&gt;I want ColumnName1, ColumnName2 and ColumnName3 filters to be applied on both sheets(so I do not want to rename columns) but in Sheet one I would need a filter or logic applied to show only Current Data and on Sheet 2 to display historical data.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I do this or apply the filter on Sheets/ State of the sheet?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 09:18:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Two-different-filters-in-two-sheets-in-the-same-app/m-p/2492463#M102192</guid>
      <dc:creator>l26b</dc:creator>
      <dc:date>2024-11-13T09:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: Two different filters in two sheets in the same app</title>
      <link>https://community.qlik.com/t5/App-Development/Two-different-filters-in-two-sheets-in-the-same-app/m-p/2492465#M102193</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/182284"&gt;@l26b&lt;/a&gt;&amp;nbsp; You can concatenate both the tables in load script with the flag. You can then utilize that Flag either as a filter or set analysis condition in measure to restrict current or historic data&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Current:
LOAD *,
     'Cuurent' as Flag
FROM current_table;

concatenate
LOAD *,
     'Historic' as Flag
FROM Historic_table;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 09:27:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Two-different-filters-in-two-sheets-in-the-same-app/m-p/2492465#M102193</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2024-11-13T09:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: Two different filters in two sheets in the same app</title>
      <link>https://community.qlik.com/t5/App-Development/Two-different-filters-in-two-sheets-in-the-same-app/m-p/2492481#M102195</link>
      <description>&lt;P&gt;how&amp;nbsp; I can create this Flag to be used in the metrics but not be seen as a Filter in the app? I do not want it to be displayed as a possible selection option&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 10:13:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Two-different-filters-in-two-sheets-in-the-same-app/m-p/2492481#M102195</guid>
      <dc:creator>l26b</dc:creator>
      <dc:date>2024-11-13T10:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Two different filters in two sheets in the same app</title>
      <link>https://community.qlik.com/t5/App-Development/Two-different-filters-in-two-sheets-in-the-same-app/m-p/2492482#M102196</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/336"&gt;@Kushal_Chawda&lt;/a&gt;&amp;nbsp;Nice solution.&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/182284"&gt;@l26b&lt;/a&gt;&amp;nbsp;You can tag the field as $hidden, or set a hideprefix/suffix for the fieldname&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense/May2024/Subsystems/Hub/Content/Sense_Hub/Scripting/field-tags.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense/May2024/Subsystems/Hub/Content/Sense_Hub/Scripting/field-tags.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense/May2024/Subsystems/Hub/Content/Sense_Hub/Scripting/SystemVariables/HidePrefix.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense/May2024/Subsystems/Hub/Content/Sense_Hub/Scripting/SystemVariables/HidePrefix.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 10:18:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Two-different-filters-in-two-sheets-in-the-same-app/m-p/2492482#M102196</guid>
      <dc:creator>madelonjansen</dc:creator>
      <dc:date>2024-11-13T10:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: Two different filters in two sheets in the same app</title>
      <link>https://community.qlik.com/t5/App-Development/Two-different-filters-in-two-sheets-in-the-same-app/m-p/2492527#M102200</link>
      <description>&lt;P&gt;Thank you so much for this solution, it is working!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In Order to avoid Synthetic Keys would it be better to use Concatenate or No Concatenate function?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 13:05:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Two-different-filters-in-two-sheets-in-the-same-app/m-p/2492527#M102200</guid>
      <dc:creator>l26b</dc:creator>
      <dc:date>2024-11-13T13:05:38Z</dc:date>
    </item>
  </channel>
</rss>

