<?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: Creating a threshold filter for a table in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817440#M66962</link>
    <description>&lt;P&gt;After trial and error, I found out that this is a known error (&lt;A href="https://community.qlik.com/t5/New-to-Qlik-Sense/Variable-Input-extension-Dashboard-Bundle-stopped-working-with/td-p/1726143" target="_blank"&gt;https://community.qlik.com/t5/New-to-Qlik-Sense/Variable-Input-extension-Dashboard-Bundle-stopped-working-with/td-p/1726143&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;What I had to do to get it working was set each of my thresholds as their own individual variables and then include the variable name in the dynamic values string.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the table column expression, I had to add&amp;nbsp;=Sum($($(vFilter))[Total Value]) to get it to work correctly.&amp;nbsp; Thanks for all of the help, I really appreciate it.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 23 Jun 2021 16:21:17 GMT</pubDate>
    <dc:creator>Evan0211</dc:creator>
    <dc:date>2021-06-23T16:21:17Z</dc:date>
    <item>
      <title>Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817126#M66896</link>
      <description>&lt;P&gt;I have a table that has a field on it with dollar amounts.&amp;nbsp; I would like to create a threshold filter of pre-defined values (All, 100k, 500k, 1M, etc) and when the user selects the amount, the table will filter to the items that are &amp;gt;= the threshold.&amp;nbsp; I cannot find any charts or controls that will do this.&amp;nbsp; I do not have the ability to install any extensions due to restrictions from the data owner.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 19:06:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817126#M66896</guid>
      <dc:creator>Evan0211</dc:creator>
      <dc:date>2021-06-22T19:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817136#M66900</link>
      <description>&lt;P&gt;You can use the&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense/May2021/Subsystems/Hub/Content/Sense_Hub/Visualizations/DashboardBundle/variable-input.htm" target="_self"&gt;Variable Input&lt;/A&gt;&amp;nbsp;with&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense/May2021/Subsystems/Hub/Content/Sense_Hub/ChartFunctions/SetAnalysis/set-analysis-expressions.htm" target="_self"&gt;Set Analysis.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Create a variable, vFilter and in the Variable Input define it as&amp;nbsp;&lt;/P&gt;&lt;P&gt;='~All|{&amp;lt;[Dollar Amount]={"&amp;gt;100000"}&amp;gt;}~&amp;gt;100k|{&amp;lt;[Dollar Amount]={"&amp;gt;500000"}&amp;gt;}~&amp;gt;500k|{&amp;lt;[Dollar Amount]={"&amp;gt;1000000"}&amp;gt;}~1M'&lt;/P&gt;&lt;P&gt;Your table expression would look like&lt;/P&gt;&lt;P&gt;Sum($(vFilter)[Dollar Amount])&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 20:08:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817136#M66900</guid>
      <dc:creator>jwjackso</dc:creator>
      <dc:date>2021-06-22T20:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817143#M66901</link>
      <description>&lt;P&gt;It says Error in Expressions ')' expected&lt;/P&gt;&lt;P&gt;The plain text shows Sum(100000 [Dollar Amount])&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 20:20:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817143#M66901</guid>
      <dc:creator>Evan0211</dc:creator>
      <dc:date>2021-06-22T20:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817144#M66902</link>
      <description>&lt;P&gt;Can you show the string that you used in the variable dynamic expression field?&amp;nbsp; Also replace the [Dollar Amount] with the real field name.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 20:38:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817144#M66902</guid>
      <dc:creator>jwjackso</dc:creator>
      <dc:date>2021-06-22T20:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817147#M66903</link>
      <description>&lt;P&gt;I upped the numbers to M from K.&lt;/P&gt;&lt;P&gt;Variable -&amp;nbsp;&lt;/P&gt;&lt;P&gt;='~All|{&amp;lt;[Total Value]={"&amp;gt;1000000"}&amp;gt;}~&amp;gt;1M|{&amp;lt;[Total Value]={"&amp;gt;5000000"}&amp;gt;}~&amp;gt;5M|{&amp;lt;[Total Value]={"&amp;gt;10000000"}&amp;gt;}~10M'&lt;/P&gt;&lt;P&gt;Expression -&lt;/P&gt;&lt;P&gt;Sum($(vFilter)[Total Value])&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 20:43:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817147#M66903</guid>
      <dc:creator>Evan0211</dc:creator>
      <dc:date>2021-06-22T20:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817153#M66905</link>
      <description>&lt;P&gt;With the following data:&lt;/P&gt;&lt;P&gt;Set vFilter="";&lt;/P&gt;&lt;P&gt;Data:&lt;BR /&gt;Load * Inline [&lt;BR /&gt;Dept,Total Value&lt;BR /&gt;D0,100000&lt;BR /&gt;D1,1000000&lt;BR /&gt;D2,5000000&lt;BR /&gt;D3,10000000&lt;BR /&gt;D4,20000000&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Using your variable string:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture1.PNG" style="width: 239px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/57371iBCC599A46B91DF0D/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture1.PNG" alt="Capture1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The variable filter works&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture2.PNG" style="width: 993px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/57372i47600C7EEA600FF4/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture2.PNG" alt="Capture2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 21:14:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817153#M66905</guid>
      <dc:creator>jwjackso</dc:creator>
      <dc:date>2021-06-22T21:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817154#M66906</link>
      <description>&lt;P&gt;When I toggle through the buttons, the data does not limit and the column that holds the amounts all turn to "-"&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 21:24:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817154#M66906</guid>
      <dc:creator>Evan0211</dc:creator>
      <dc:date>2021-06-22T21:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817156#M66907</link>
      <description>&lt;P&gt;In the expression editor for Sum($(vFilter)[Total Value]), at the bottom, how has the $(vFilter) been expanded&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 21:26:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817156#M66907</guid>
      <dc:creator>jwjackso</dc:creator>
      <dc:date>2021-06-22T21:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817157#M66908</link>
      <description>&lt;P&gt;The expression in the column of the table is:&amp;nbsp;=Sum($(&lt;SPAN&gt;vFilter&lt;/SPAN&gt;)[Total Value])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The bottom shows: =Sum([TotalValue])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;vFilter has not been expanded on the bottom.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 21:33:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817157#M66908</guid>
      <dc:creator>Evan0211</dc:creator>
      <dc:date>2021-06-22T21:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817158#M66909</link>
      <description>&lt;P&gt;And you have selected something other than the All button?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 21:35:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817158#M66909</guid>
      <dc:creator>jwjackso</dc:creator>
      <dc:date>2021-06-22T21:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817159#M66910</link>
      <description>&lt;P&gt;I just selected 1M and the expression at the bottom of the editor is:&lt;/P&gt;&lt;P&gt;=Sum({&amp;amp;lt;[Total Value]=["&amp;amp;gt;1000000"}&amp;amp;gt;][Total Value])&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 21:37:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817159#M66910</guid>
      <dc:creator>Evan0211</dc:creator>
      <dc:date>2021-06-22T21:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817160#M66911</link>
      <description>&lt;P&gt;Did you cut and paste the original filter from this discussion?&amp;nbsp; It looks like there is embedded html characters, &amp;amp;lt;&lt;/P&gt;&lt;P&gt;You should be seeing&amp;nbsp;&lt;/P&gt;&lt;P&gt;=Sum({&amp;lt;[Total Value={"&amp;gt;1000000"}&amp;gt;}[Total Value])&lt;/P&gt;&lt;P&gt;It also looks like there is are square braces "[]" instead of a curly "{}" braces&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 21:43:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817160#M66911</guid>
      <dc:creator>jwjackso</dc:creator>
      <dc:date>2021-06-22T21:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817161#M66912</link>
      <description>&lt;P&gt;Let me sanitize it real quick and see if that clears out the issue&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 21:44:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817161#M66912</guid>
      <dc:creator>Evan0211</dc:creator>
      <dc:date>2021-06-22T21:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817162#M66913</link>
      <description>&lt;P&gt;I ran it through notepad and it still comes back with the #&amp;amp;lt; and &amp;amp;gt; encoding.&amp;nbsp; Any ideas?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 21:49:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817162#M66913</guid>
      <dc:creator>Evan0211</dc:creator>
      <dc:date>2021-06-22T21:49:03Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817163#M66914</link>
      <description>&lt;P&gt;I can't replicate the encoding, I can only suggest manually typing the string in the Qlik expression editor.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 21:56:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817163#M66914</guid>
      <dc:creator>jwjackso</dc:creator>
      <dc:date>2021-06-22T21:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817164#M66915</link>
      <description>&lt;P&gt;I just went back and hand typed it and it still shows the encoding.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 22:10:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817164#M66915</guid>
      <dc:creator>Evan0211</dc:creator>
      <dc:date>2021-06-22T22:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817364#M66944</link>
      <description>&lt;P&gt;I spent most of the night trying to get this encoding issue cleared up and have run out of ideas.&amp;nbsp; I have created new variables, I have hand typed the expression, I have run it through notepad to strip anything out of it, I have even tried online encoding/decoding.&amp;nbsp; Nothing seems to work. No matter what, I have this as my expression:&lt;/P&gt;&lt;P&gt;=Sum({&amp;amp;lt;[Total Value]={"&amp;amp;gt;1000000"}&amp;amp;gt;}[Total Value])&lt;/P&gt;&lt;P&gt;The error says Error in expression: '}' expected&lt;/P&gt;&lt;P&gt;This is my dynamic value expression:&lt;/P&gt;&lt;P&gt;='~All|{&amp;lt;[Total Value]={"&amp;gt;100000"}&amp;gt;}~&amp;gt;100k|{&amp;lt;[Total Value]={"&amp;gt;500000"}&amp;gt;}~&amp;gt;500k|{&amp;lt;[Total Value]={"&amp;gt;1000000"}&amp;gt;}~1M'&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 13:38:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817364#M66944</guid>
      <dc:creator>Evan0211</dc:creator>
      <dc:date>2021-06-23T13:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817375#M66946</link>
      <description>&lt;P&gt;What browser and qlik sense version are you using?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 13:37:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817375#M66946</guid>
      <dc:creator>jwjackso</dc:creator>
      <dc:date>2021-06-23T13:37:16Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817377#M66947</link>
      <description>&lt;P&gt;I am using chrome.&amp;nbsp; I am unsure on the version, I am unfortunately just a cog in the wheel on this.&amp;nbsp; I don't own any of it.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 13:41:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817377#M66947</guid>
      <dc:creator>Evan0211</dc:creator>
      <dc:date>2021-06-23T13:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a threshold filter for a table</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817399#M66951</link>
      <description>&lt;P&gt;Would there be any reason I would need an escape sequence with the quotes?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 14:20:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-a-threshold-filter-for-a-table/m-p/1817399#M66951</guid>
      <dc:creator>Evan0211</dc:creator>
      <dc:date>2021-06-23T14:20:19Z</dc:date>
    </item>
  </channel>
</rss>

