<?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: Conditional Expression not working in the Table. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Conditional-Expression-not-working-in-the-Table/m-p/2067620#M1243857</link>
    <description>&lt;P&gt;In general it should work. I suggest to test the logic at first with a fixed value - means replacing the variable with any value like 10000 which would exclude any possible issues with the variable. If this proved that the logic and and the expression-syntax with all brackets are ok. it means that the variable-value isn't valid, for example because it's a string and not a number or the value isn't properly formatted and containing any comma as thousand/decimal delimiter.&lt;/P&gt;</description>
    <pubDate>Thu, 04 May 2023 11:00:22 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2023-05-04T11:00:22Z</dc:date>
    <item>
      <title>Conditional Expression not working in the Table.</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Expression-not-working-in-the-Table/m-p/2067511#M1243853</link>
      <description>&lt;P&gt;I created a variable called threshold_upper. Now, I want the table to filter according to the values assigned to the variable.&lt;/P&gt;
&lt;P&gt;The write a syntax in conditional expression but it is not working.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Keshav_singh_0-1683181204328.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/106435i645B10A43C69F98F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Keshav_singh_0-1683181204328.png" alt="Keshav_singh_0-1683181204328.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Suggest me if something is wrong in this or any other formula.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Expression-not-working-in-the-Table/m-p/2067511#M1243853</guid>
      <dc:creator>Keshav_singh</dc:creator>
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Expression not working in the Table.</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Expression-not-working-in-the-Table/m-p/2067620#M1243857</link>
      <description>&lt;P&gt;In general it should work. I suggest to test the logic at first with a fixed value - means replacing the variable with any value like 10000 which would exclude any possible issues with the variable. If this proved that the logic and and the expression-syntax with all brackets are ok. it means that the variable-value isn't valid, for example because it's a string and not a number or the value isn't properly formatted and containing any comma as thousand/decimal delimiter.&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2023 11:00:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Expression-not-working-in-the-Table/m-p/2067620#M1243857</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2023-05-04T11:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Expression not working in the Table.</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Expression-not-working-in-the-Table/m-p/2067654#M1243861</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/228555"&gt;@Keshav_singh&lt;/a&gt;&amp;nbsp; When you say it is not working, is it not giving expected results or not at all giving any value? Possibly if your variable is having some expression make sure that your expression starts with "=", otherwise it will not be evaluated and compared with condition in measure.&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2023 11:57:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Expression-not-working-in-the-Table/m-p/2067654#M1243861</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2023-05-04T11:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Expression not working in the Table.</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-Expression-not-working-in-the-Table/m-p/2078895#M1243864</link>
      <description>&lt;P&gt;To filter a table based on the values assigned to the variable threshold_upper, you can use conditional expressions in your syntax. Here's an example of how you can accomplish this:&lt;/P&gt;
&lt;P&gt;python&lt;BR /&gt;Copy code&lt;BR /&gt;# Assuming you have a table called 'data_table' with a column named 'value'&lt;/P&gt;
&lt;P&gt;# Assign a value to the threshold_upper variable&lt;BR /&gt;threshold_upper = 50&lt;/P&gt;
&lt;P&gt;# Filter the table based on the threshold_upper variable&lt;BR /&gt;filtered_table = data_table[data_table['value'] &amp;gt; threshold_upper]&lt;BR /&gt;In the above code, we compare the 'value' column of the 'data_table' with the threshold_upper variable using the greater than (&amp;gt;) operator. This will filter the table and create a new table called 'filtered_table' that only includes rows where the 'value' is greater than the assigned threshold.&lt;/P&gt;
&lt;P&gt;Make sure you have assigned a numeric value to the threshold_upper variable before using it in the conditional expression. Also, ensure that the table and column names in your code match your actual data structure.&lt;/P&gt;
&lt;P&gt;If you're encountering any issues or errors with your syntax, please provide more details or the specific error message so that I can assist you further &lt;A href="https://www.sailwayz.com/%20" target="_self"&gt;Consultant CRM Salesforce&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2023 10:31:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-Expression-not-working-in-the-Table/m-p/2078895#M1243864</guid>
      <dc:creator>joshsiddle8</dc:creator>
      <dc:date>2023-06-01T10:31:58Z</dc:date>
    </item>
  </channel>
</rss>

