<?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: Calculated Measure won't update when referenced in a custom table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-won-t-update-when-referenced-in-a-custom/m-p/4007286#M156930</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;- Calculated tables are static and not dynamic. They are only refreshed when your model refreshes, they do not update with changes of a slicer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can use a field parameter if you are looking to switch between different measure results, and if you put measures inside a field parameter they remain fully dynamic.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this helps, please mark it as the solution.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 24 Jun 2024 15:57:40 GMT</pubDate>
    <dc:creator>mark_endicott</dc:creator>
    <dc:date>2024-06-24T15:57:40Z</dc:date>
    <item>
      <title>Calculated Measure won't update when referenced in a custom table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-won-t-update-when-referenced-in-a-custom/m-p/3098596#M156927</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I'm using this method (&lt;A href="https://community.powerbi.com/t5/Desktop/How-to-make-measure-dynamic-based-on-DATE-selection-via-Date/m-p/344439#M154450)" target="_blank" rel="noopener"&gt;https://community.powerbi.com/t5/Desktop/How-to-make-measure-dynamic-based-on-DATE-selection-via-Date/m-p/344439#M154450)&lt;/A&gt; to filter the values in my measures by date and it works perfectly, but when the measure is referenced in a table the table does not display the change made to the measure by the filter.&lt;BR /&gt;The measure used for the date:&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;Dia Variable = &lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Tabla Calendario'&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;The calculated measure using the method to change the date:&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;M_ECO_6m= &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;DIA&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;[Dia Variable]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;MOTI&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;+&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;COUNT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'SB'&lt;/SPAN&gt;&lt;SPAN&gt;[ANTIGUEDAD]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'SB'&lt;/SPAN&gt;&lt;SPAN&gt;[ANTIGUEDAD]&lt;/SPAN&gt;&lt;SPAN&gt;IN&lt;/SPAN&gt;&lt;SPAN&gt; { &lt;/SPAN&gt;&lt;SPAN&gt;"+6M"&lt;/SPAN&gt;&lt;SPAN&gt; },&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;NOT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'SB'&lt;/SPAN&gt;&lt;SPAN&gt;[GC]&lt;/SPAN&gt; &lt;SPAN&gt;IN&lt;/SPAN&gt;&lt;SPAN&gt; {&lt;/SPAN&gt;&lt;SPAN&gt;"GC"&lt;/SPAN&gt;&lt;SPAN&gt;}),&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'SB'&lt;/SPAN&gt;&lt;SPAN&gt;[date_op]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;DIA&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'SB'&lt;/SPAN&gt;&lt;SPAN&gt;[Description]&lt;/SPAN&gt; &lt;SPAN&gt;IN&lt;/SPAN&gt;&lt;SPAN&gt; {&lt;/SPAN&gt;&lt;SPAN&gt;"MO_ECO"&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt; &lt;SPAN&gt;MOTI&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;The table im creating:&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;M_SB = {&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"M_Eco"&lt;/SPAN&gt;&lt;SPAN&gt;,[M_ECO_6m],[%_eco_6m],[M_ECO_X],[%_eco_x],[MO_ECO_G],[%_eco_g])}&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;when i put the measure in a KPI card it works fine but in the custom table it doesnt update with the filter.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 24 Feb 2023 17:30:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-won-t-update-when-referenced-in-a-custom/m-p/3098596#M156927</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-24T17:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Measure won't update when referenced in a custom table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-won-t-update-when-referenced-in-a-custom/m-p/4007286#M156930</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;- Calculated tables are static and not dynamic. They are only refreshed when your model refreshes, they do not update with changes of a slicer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can use a field parameter if you are looking to switch between different measure results, and if you put measures inside a field parameter they remain fully dynamic.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this helps, please mark it as the solution.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2024 15:57:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-won-t-update-when-referenced-in-a-custom/m-p/4007286#M156930</guid>
      <dc:creator>mark_endicott</dc:creator>
      <dc:date>2024-06-24T15:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Measure won't update when referenced in a custom table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-won-t-update-when-referenced-in-a-custom/m-p/4013153#M158053</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;- Did this work?&amp;nbsp;&lt;SPAN&gt;Please could you mark it as the solution if yes, this helps other users find it.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2024 09:47:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-won-t-update-when-referenced-in-a-custom/m-p/4013153#M158053</guid>
      <dc:creator>mark_endicott</dc:creator>
      <dc:date>2024-06-27T09:47:56Z</dc:date>
    </item>
  </channel>
</rss>

