<?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: get value less than or equal to selected ID_ANNO_SEMANA in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/get-value-less-than-or-equal-to-selected-ID-ANNO-SEMANA/m-p/2533284#M108197</link>
    <description>&lt;P&gt;Hi, it's the same as what I tried.&lt;BR /&gt;It doesn't meet the condition.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cristianj23a_0-1760366197714.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/184203iFDEA5225B78A75A5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="cristianj23a_0-1760366197714.png" alt="cristianj23a_0-1760366197714.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Regarts.&lt;/P&gt;</description>
    <pubDate>Mon, 13 Oct 2025 14:37:14 GMT</pubDate>
    <dc:creator>cristianj23a</dc:creator>
    <dc:date>2025-10-13T14:37:14Z</dc:date>
    <item>
      <title>get value less than or equal to selected ID_ANNO_SEMANA</title>
      <link>https://community.qlik.com/t5/App-Development/get-value-less-than-or-equal-to-selected-ID-ANNO-SEMANA/m-p/2533164#M108179</link>
      <description>&lt;P&gt;Hello, I need help.&lt;/P&gt;&lt;P&gt;I have a case where I have a filter, ID_YEAR_WEEK, configured to always retain a selected value.&lt;/P&gt;&lt;P&gt;But in the table chart, I want the following condition to be displayed in column "a."&lt;/P&gt;&lt;P&gt;That the values ​​of the "TARA_POND" are displayed but only with the value less than or equal to the selected ID_ANNO_SEMANA, for example in this case I am filtering the ID_ANNO_SEMANA = 202545, then for the ID_PERIODOMENSUAL = 202512 it should show the TASA_POND of the ID_ANNO_SEMANA = 20245, not 202549 since it should be less than or equal to the ID_ANNO_SEMANA, the same in ID_PERIODOMENSUAL = 202511 it should show the "TARA_POND" of ID_ANNO_SEMANA = 20215, the same in ID_PERIODOMENSUAL = 202509 it should show the TASA_POND of the ID_ANNO_SEMANA = 202538 which its value is 0.58, since 202538 is less than or equal to 202545, so it should obey that condition when filtering another ID_YEAR_WEEK.&lt;/P&gt;&lt;P&gt;The results should be those with the red border in the image.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cristianj23a_0-1760129627659.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/184186i5F856DAC9BBE2321/image-size/medium?v=v2&amp;amp;px=400" role="button" title="cristianj23a_0-1760129627659.png" alt="cristianj23a_0-1760129627659.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would appreciate your help.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Oct 2025 20:54:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/get-value-less-than-or-equal-to-selected-ID-ANNO-SEMANA/m-p/2533164#M108179</guid>
      <dc:creator>cristianj23a</dc:creator>
      <dc:date>2025-10-10T20:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: get value less than or equal to selected ID_ANNO_SEMANA</title>
      <link>https://community.qlik.com/t5/App-Development/get-value-less-than-or-equal-to-selected-ID-ANNO-SEMANA/m-p/2533177#M108183</link>
      <description>&lt;P&gt;Hi, you can try with:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;FirstSortedValue(TOTAL &amp;lt;ID_PERIODOMENSUAL&amp;gt; {&amp;lt;ID_ANNO_SEMANA={"&amp;lt;=$(=Max(ID_ANNO_SEMANA))"}&amp;gt;} TASA_POND,-ID_ANNO_SEMANA)&lt;/LI-CODE&gt;&lt;P&gt;If you want to show the TASA_POND as 0 for higher ID_ANNO_SEMANA values, you can add a condition like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;If(Only({1}ID_ANNO_SEMANA)&amp;gt;Max(TOTAL ID_ANNO_SEMANA)
  ,0
  ,FirstSortedValue(TOTAL &amp;lt;ID_PERIODOMENSUAL&amp;gt; {&amp;lt;ID_ANNO_SEMANA={"&amp;lt;=$(=Max(ID_ANNO_SEMANA))"}&amp;gt;} TASA_POND,-ID_ANNO_SEMANA)
)&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 12 Oct 2025 06:53:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/get-value-less-than-or-equal-to-selected-ID-ANNO-SEMANA/m-p/2533177#M108183</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2025-10-12T06:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: get value less than or equal to selected ID_ANNO_SEMANA</title>
      <link>https://community.qlik.com/t5/App-Development/get-value-less-than-or-equal-to-selected-ID-ANNO-SEMANA/m-p/2533284#M108197</link>
      <description>&lt;P&gt;Hi, it's the same as what I tried.&lt;BR /&gt;It doesn't meet the condition.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cristianj23a_0-1760366197714.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/184203iFDEA5225B78A75A5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="cristianj23a_0-1760366197714.png" alt="cristianj23a_0-1760366197714.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Regarts.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Oct 2025 14:37:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/get-value-less-than-or-equal-to-selected-ID-ANNO-SEMANA/m-p/2533284#M108197</guid>
      <dc:creator>cristianj23a</dc:creator>
      <dc:date>2025-10-13T14:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: get value less than or equal to selected ID_ANNO_SEMANA</title>
      <link>https://community.qlik.com/t5/App-Development/get-value-less-than-or-equal-to-selected-ID-ANNO-SEMANA/m-p/2533305#M108202</link>
      <description>&lt;P&gt;Hi, you should have something different, this is what I see using the expressions in your attached app:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rubenmarin_0-1760376157156.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/184205iAF829D9FE22849AC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="rubenmarin_0-1760376157156.png" alt="rubenmarin_0-1760376157156.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Oct 2025 17:24:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/get-value-less-than-or-equal-to-selected-ID-ANNO-SEMANA/m-p/2533305#M108202</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2025-10-13T17:24:50Z</dc:date>
    </item>
  </channel>
</rss>

