<?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: Set Analysis Expression &amp;quot;-=&amp;quot; operator not working in Qlik sense Version Nov 14.212.7 Patch2 in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2514897#M105601</link>
    <description>&lt;P&gt;Check as per below...&lt;/P&gt;&lt;P&gt;Step 1: Check Variable Definitions&lt;BR /&gt;Make sure the variables referenced in the expression are correctly defined and returning values:&lt;/P&gt;&lt;P&gt;vDebitorsOnly&lt;/P&gt;&lt;P&gt;vCurrency&lt;/P&gt;&lt;P&gt;vCurrencySymbol&lt;/P&gt;&lt;P&gt;Verify each variable in a simple KPI object to ensure they contain the expected values.&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;='Debitors Variable: ' &amp;amp; $(vDebitorsOnly)&lt;/P&gt;&lt;P&gt;Step 2: Date Format and [%KeyDate]&lt;BR /&gt;The %KeyDate field might be a numeric or text representation of a date. Ensure that the format returned by:&lt;/P&gt;&lt;P&gt;=$(=max([%KeyDate]))&lt;BR /&gt;matches exactly what's stored in your %KeyDate field.&lt;/P&gt;&lt;P&gt;Test in a KPI object:&lt;/P&gt;&lt;P&gt;=$(=max([%KeyDate]))&lt;BR /&gt;Make sure this returns a date in the identical format stored in %KeyDate.&lt;/P&gt;&lt;P&gt;If %KeyDate is numeric, check if the max returns numeric.&lt;/P&gt;&lt;P&gt;If %KeyDate is a date string, ensure formatting matches exactly.&lt;/P&gt;&lt;P&gt;Step 3: Field Content and Data Model Changes&lt;BR /&gt;Check if the values exist and align properly:&lt;/P&gt;&lt;P&gt;Cleared_Flag={'Unpaid'}&lt;/P&gt;&lt;P&gt;[Ev_Overdue.Type]={'Overdue'}&lt;/P&gt;&lt;P&gt;[Ev_Overdue.Bucket]-={'Due'}&lt;/P&gt;&lt;P&gt;Make sure these values still exist in the dataset. Perhaps values were changed or normalized differently in recent data loads.&lt;/P&gt;&lt;P&gt;Simple check:&lt;/P&gt;&lt;P&gt;=Count({&amp;lt;Cleared_Flag={'Unpaid'}&amp;gt;} DISTINCT Cleared_Flag)&lt;BR /&gt;=Count({&amp;lt;[Ev_Overdue.Type]={'Overdue'}&amp;gt;} DISTINCT [Ev_Overdue.Type])&lt;BR /&gt;=Count({&amp;lt;[Ev_Overdue.Bucket]-={'Due'}&amp;gt;} DISTINCT [Ev_Overdue.Bucket])&lt;BR /&gt;These should return numbers greater than zero if data exists.&lt;/P&gt;&lt;P&gt;Step 4: Currency Field Name Changes&lt;BR /&gt;Verify the field [Account_Receivable_Evolution.Amount_$(vCurrency)] exists.&lt;/P&gt;&lt;P&gt;Maybe vCurrency changed to a value for which no field currently exists (e.g., it switched from USD to AUD).&lt;/P&gt;&lt;P&gt;Confirm in a KPI object:&lt;/P&gt;&lt;P&gt;=Count([Account_Receivable_Evolution.Amount_$(vCurrency)])&lt;BR /&gt;If this returns a number, the field exists. If it returns an error, check field names in the Data Model Viewer.&lt;/P&gt;&lt;P&gt;Quick Diagnostic Test:&lt;BR /&gt;Replace the whole expression temporarily with a simpler one to confirm set conditions work:&lt;/P&gt;&lt;P&gt;=Sum({&amp;lt;Cleared_Flag={'Unpaid'}&amp;gt;} [Account_Receivable_Evolution.Amount_$(vCurrency)])&lt;BR /&gt;Then gradually add conditions back one at a time, verifying each step.&lt;/P&gt;&lt;P&gt;Most Common Issue&lt;BR /&gt;Typically, such an expression stops working because:&lt;/P&gt;&lt;P&gt;The date returned by max([%KeyDate]) no longer matches the stored date format.&lt;/P&gt;&lt;P&gt;One of the variables (vDebitorsOnly, vCurrency) changed or became empty.&lt;/P&gt;&lt;P&gt;The dataset changed (field renamed, cleared flags or overdue types altered).&lt;/P&gt;&lt;P&gt;Suggested Next Steps:&lt;BR /&gt;Confirm variable values (Step 1)&lt;/P&gt;&lt;P&gt;Check the output of max([%KeyDate]) (Step 2)&lt;/P&gt;&lt;P&gt;Check data model integrity (Steps 3 &amp;amp; 4)&lt;/P&gt;&lt;P&gt;Simplify and rebuild the set analysis to isolate the problem&lt;/P&gt;&lt;P&gt;Following this methodical approach will pinpoint and resolve the issue efficiently.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 21 Apr 2025 00:40:29 GMT</pubDate>
    <dc:creator>Scotchy</dc:creator>
    <dc:date>2025-04-21T00:40:29Z</dc:date>
    <item>
      <title>Set Analysis Expression "-=" operator not working in Qlik sense Version Nov 14.212.7 Patch2</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2514844#M105578</link>
      <description>&lt;P&gt;Hello Team,&lt;/P&gt;&lt;P&gt;I am trying to fix the below set analysis expression "-=" operator not working.&lt;/P&gt;&lt;P&gt;In expression, I want to filter data related to Due amount as highlighted below&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Num(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;Sum({&amp;lt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Cleared_Flag={'Unpaid'},&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;[%KeyDate]={"$(=max([%KeyDate]))"},&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;IsDebitor={"$(vDebitorsOnly)"},&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;[Ev_Overdue.Type]={'Overdue'},&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;FONT color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&lt;FONT size="5"&gt;&lt;STRONG&gt;[Ev_Overdue.Bucket]-={'Due'}&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;[Account_Receivable_Evolution.Amount_$(vCurrency)]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;'# ##0' &amp;amp; '$(vCurrencySymbol)'&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;This works earlier suddenly stopped working kindly help on this issue.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Apr 2025 15:38:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2514844#M105578</guid>
      <dc:creator>nagarjuna005</dc:creator>
      <dc:date>2025-04-18T15:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Expression "-=" operator not working in Qlik sense Version Nov 14.212.7 Patch2</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2514846#M105580</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;It's hard to guess what went wrong with your expression without seeing the data.&lt;/P&gt;&lt;P&gt;I find your date condition rather questionable. You are using double quotes, which signify Search, however there is no search condition there - just a single date, calculated within the $-sign expansion. If you are looking for a single date, then drop the double quotes and use it as a simple selection filter. If your dates are numeric, then no quotes are needed. However, if your dates are fully formatted date fields, then I believe you need to add the Date() formatting function and enclose your $-sign expansion in single quotes.&lt;/P&gt;&lt;P&gt;To learn more about advanced Set Analysis, come to my session at the &lt;A href="https://MastersSummit.com" target="_blank" rel="noopener"&gt;Masters Summit for Qlik&lt;/A&gt; this September in Hamburg.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Apr 2025 15:49:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2514846#M105580</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2025-04-18T15:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Expression "-=" operator not working in Qlik sense Version Nov 14.212.7 Patch2</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2514849#M105582</link>
      <description>&lt;P&gt;my goal is to eliminate due amount from the set analysis expression so that Due amount should not include into the report. so i am using the above expression to eliminate but "-=" is not working as expected. thanks for your help&lt;/P&gt;</description>
      <pubDate>Fri, 18 Apr 2025 15:57:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2514849#M105582</guid>
      <dc:creator>nagarjuna005</dc:creator>
      <dc:date>2025-04-18T15:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Expression "-=" operator not working in Qlik sense Version Nov 14.212.7 Patch2</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2514852#M105585</link>
      <description>&lt;P&gt;I understand your goal, but I cannot help you any further without seeing your app.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Apr 2025 16:20:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2514852#M105585</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2025-04-18T16:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Expression "-=" operator not working in Qlik sense Version Nov 14.212.7 Patch2</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2514866#M105588</link>
      <description>&lt;P&gt;It worked before, but not anymore.&lt;/P&gt;&lt;P&gt;What changed ? I would expect that you either made a change to the data model, the expression or your environment. What has changed?&lt;/P&gt;&lt;P&gt;You ensure it is the modifirer that you pointed out that is the problem. Does it not work , then try to remove all but the troubled modifier from you expression.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Apr 2025 21:28:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2514866#M105588</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2025-04-18T21:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Expression "-=" operator not working in Qlik sense Version Nov 14.212.7 Patch2</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2514873#M105593</link>
      <description>&lt;P&gt;not changed anything related to data model so I am not sure why its not working.&lt;/P&gt;&lt;P&gt;I want to exclude Due amount with in expression so that its not bring into report .&lt;/P&gt;&lt;P&gt;Please provide any alternate solution for this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;</description>
      <pubDate>Sat, 19 Apr 2025 07:38:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2514873#M105593</guid>
      <dc:creator>nagarjuna005</dc:creator>
      <dc:date>2025-04-19T07:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Expression "-=" operator not working in Qlik sense Version Nov 14.212.7 Patch2</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2514897#M105601</link>
      <description>&lt;P&gt;Check as per below...&lt;/P&gt;&lt;P&gt;Step 1: Check Variable Definitions&lt;BR /&gt;Make sure the variables referenced in the expression are correctly defined and returning values:&lt;/P&gt;&lt;P&gt;vDebitorsOnly&lt;/P&gt;&lt;P&gt;vCurrency&lt;/P&gt;&lt;P&gt;vCurrencySymbol&lt;/P&gt;&lt;P&gt;Verify each variable in a simple KPI object to ensure they contain the expected values.&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;='Debitors Variable: ' &amp;amp; $(vDebitorsOnly)&lt;/P&gt;&lt;P&gt;Step 2: Date Format and [%KeyDate]&lt;BR /&gt;The %KeyDate field might be a numeric or text representation of a date. Ensure that the format returned by:&lt;/P&gt;&lt;P&gt;=$(=max([%KeyDate]))&lt;BR /&gt;matches exactly what's stored in your %KeyDate field.&lt;/P&gt;&lt;P&gt;Test in a KPI object:&lt;/P&gt;&lt;P&gt;=$(=max([%KeyDate]))&lt;BR /&gt;Make sure this returns a date in the identical format stored in %KeyDate.&lt;/P&gt;&lt;P&gt;If %KeyDate is numeric, check if the max returns numeric.&lt;/P&gt;&lt;P&gt;If %KeyDate is a date string, ensure formatting matches exactly.&lt;/P&gt;&lt;P&gt;Step 3: Field Content and Data Model Changes&lt;BR /&gt;Check if the values exist and align properly:&lt;/P&gt;&lt;P&gt;Cleared_Flag={'Unpaid'}&lt;/P&gt;&lt;P&gt;[Ev_Overdue.Type]={'Overdue'}&lt;/P&gt;&lt;P&gt;[Ev_Overdue.Bucket]-={'Due'}&lt;/P&gt;&lt;P&gt;Make sure these values still exist in the dataset. Perhaps values were changed or normalized differently in recent data loads.&lt;/P&gt;&lt;P&gt;Simple check:&lt;/P&gt;&lt;P&gt;=Count({&amp;lt;Cleared_Flag={'Unpaid'}&amp;gt;} DISTINCT Cleared_Flag)&lt;BR /&gt;=Count({&amp;lt;[Ev_Overdue.Type]={'Overdue'}&amp;gt;} DISTINCT [Ev_Overdue.Type])&lt;BR /&gt;=Count({&amp;lt;[Ev_Overdue.Bucket]-={'Due'}&amp;gt;} DISTINCT [Ev_Overdue.Bucket])&lt;BR /&gt;These should return numbers greater than zero if data exists.&lt;/P&gt;&lt;P&gt;Step 4: Currency Field Name Changes&lt;BR /&gt;Verify the field [Account_Receivable_Evolution.Amount_$(vCurrency)] exists.&lt;/P&gt;&lt;P&gt;Maybe vCurrency changed to a value for which no field currently exists (e.g., it switched from USD to AUD).&lt;/P&gt;&lt;P&gt;Confirm in a KPI object:&lt;/P&gt;&lt;P&gt;=Count([Account_Receivable_Evolution.Amount_$(vCurrency)])&lt;BR /&gt;If this returns a number, the field exists. If it returns an error, check field names in the Data Model Viewer.&lt;/P&gt;&lt;P&gt;Quick Diagnostic Test:&lt;BR /&gt;Replace the whole expression temporarily with a simpler one to confirm set conditions work:&lt;/P&gt;&lt;P&gt;=Sum({&amp;lt;Cleared_Flag={'Unpaid'}&amp;gt;} [Account_Receivable_Evolution.Amount_$(vCurrency)])&lt;BR /&gt;Then gradually add conditions back one at a time, verifying each step.&lt;/P&gt;&lt;P&gt;Most Common Issue&lt;BR /&gt;Typically, such an expression stops working because:&lt;/P&gt;&lt;P&gt;The date returned by max([%KeyDate]) no longer matches the stored date format.&lt;/P&gt;&lt;P&gt;One of the variables (vDebitorsOnly, vCurrency) changed or became empty.&lt;/P&gt;&lt;P&gt;The dataset changed (field renamed, cleared flags or overdue types altered).&lt;/P&gt;&lt;P&gt;Suggested Next Steps:&lt;BR /&gt;Confirm variable values (Step 1)&lt;/P&gt;&lt;P&gt;Check the output of max([%KeyDate]) (Step 2)&lt;/P&gt;&lt;P&gt;Check data model integrity (Steps 3 &amp;amp; 4)&lt;/P&gt;&lt;P&gt;Simplify and rebuild the set analysis to isolate the problem&lt;/P&gt;&lt;P&gt;Following this methodical approach will pinpoint and resolve the issue efficiently.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Apr 2025 00:40:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2514897#M105601</guid>
      <dc:creator>Scotchy</dc:creator>
      <dc:date>2025-04-21T00:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Expression "-=" operator not working in Qlik sense Version Nov 14.212.7 Patch2</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2514903#M105602</link>
      <description>&lt;P&gt;I remember the issue when I face after hotfixes one day &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Can you please check how the &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Due&lt;/STRONG&gt;&lt;/FONT&gt; looks like in your data model (I mean, what is the ANSI keyword?)?&lt;/P&gt;&lt;P&gt;Can you do Favor checking this in Qlik server (Good to check engine servers).&lt;/P&gt;&lt;P&gt;Using PowerShell as Admin and&amp;nbsp;Run the command Get-Hotfix and share the screenshot.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Apr 2025 03:07:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2514903#M105602</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2025-04-21T03:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Expression "-=" operator not working in Qlik sense Version Nov 14.212.7 Patch2</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2515098#M105621</link>
      <description>&lt;P&gt;Before looking for any expression-issues take a look on the real existing data with the relevant fields within a table-box.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Apr 2025 10:51:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2515098#M105621</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2025-04-22T10:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Expression "-=" operator not working in Qlik sense Version Nov 14.212.7 Patch2</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2515108#M105628</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/24033"&gt;@nagarjuna005&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Just do a basics checks of your expression using table and text objects, what is the exact value that you are getting in each parameter or attributes.&lt;/P&gt;&lt;P&gt;Cleared_Flag={'Unpaid'},&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;[%KeyDate]={"$(=max([%KeyDate]))"},&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;IsDebitor={"$(vDebitorsOnly)"},&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;[Ev_Overdue.Type]={'Overdue'},&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;FONT color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&lt;FONT size="5"&gt;&lt;STRONG&gt;[Ev_Overdue.Bucket]-={'Due'}&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;[Account_Receivable_Evolution.Amount_$(vCurrency)]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;'# ##0' &amp;amp; '$(vCurrencySymbol)'&lt;/P&gt;</description>
      <pubDate>Tue, 22 Apr 2025 11:54:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2515108#M105628</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2025-04-22T11:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Expression "-=" operator not working in Qlik sense Version Nov 14.212.7 Patch2</title>
      <link>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2515826#M105710</link>
      <description>&lt;P&gt;Thanks for all your responses.&lt;/P&gt;&lt;P&gt;but looks like syntax error in condition so it works for me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Num(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;Sum({&amp;lt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Cleared_Flag={'Unpaid'},&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;[%KeyDate]={"$(=max([%KeyDate]))"},&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;IsDebitor={"$(vDebitorsOnly)"},&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;[Ev_Overdue.Type]={'Overdue'},&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;FONT color="#FF0000"&gt;&amp;nbsp;&amp;nbsp;&lt;FONT size="5"&gt;&lt;STRONG&gt;[Ev_Overdue.Bucket]=-{'[Due]'}&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;[Account_Receivable_Evolution.Amount_$(vCurrency)]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;'# ##0' &amp;amp; '$(vCurrencySymbol)'&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;!--  
        Layout, Style or Voice Helpers
      --&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;!--  
        Compliance
      --&gt;&lt;DIV class=""&gt;&lt;!--   For autoSmartRem addNewWindowWarnings div is referenced in an aria-describedby   --&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;!--   Symbol definitions   --&gt;&lt;/DIV&gt;&lt;!--   end #ae_app   --&gt;</description>
      <pubDate>Sat, 26 Apr 2025 13:59:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-Analysis-Expression-quot-quot-operator-not-working-in-Qlik/m-p/2515826#M105710</guid>
      <dc:creator>nagarjuna005</dc:creator>
      <dc:date>2025-04-26T13:59:28Z</dc:date>
    </item>
  </channel>
</rss>

