<?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: How to create new calculated table and filter it dynamically using measures in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-new-calculated-table-and-filter-it-dynamically/m-p/4041926#M160269</link>
    <description>&lt;P&gt;Hi Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;FYI, the SNAPSHOT_DATE column updates daily with yesterday's date, but apart from that, the remaining columns' data is 90 percent similar. If I include SNAPSHOT_DATE in the summary, it will cause many duplicates. That's the problem here.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 15 Jul 2024 07:30:53 GMT</pubDate>
    <dc:creator>Bhargav150</dc:creator>
    <dc:date>2024-07-15T07:30:53Z</dc:date>
    <item>
      <title>How to create new calculated table and filter it dynamically using measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-new-calculated-table-and-filter-it-dynamically/m-p/4039498#M160163</link>
      <description>&lt;P&gt;Hi I'm trying to create a new table based on existing dataset query1 in power bi, Because there is a duplicate values in the Snap_date column in the query1, But we need to use only Snap_date as filter so, that's why I have written a query like these&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First created a date table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Date Table =&amp;nbsp;&lt;/P&gt;&lt;P&gt;CALENDAR (&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Min('query1' [Snap_date],&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Max('query1' [Snap_date]&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then created 2 measures in the Date Table&lt;/P&gt;&lt;P&gt;Start Date = Min('Date Table'[Date]&lt;/P&gt;&lt;P&gt;End Date = Max('Date Table'[Date]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;My requirement is to place the Date Table Date column in the between slicer and when I change the slicer these values need to go in to measures, Up to here everything working as expected&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the last step I have created a table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NewTable =&lt;/P&gt;&lt;P&gt;SUMMARIZE (&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; FILTER (&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; query1,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; query1[SNAP_DATE] &amp;gt;= [Start Date] &amp;amp;&amp;amp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; query1[SNAP_DATE] &amp;lt;= [End Date]&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; ),&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; query1[ID],&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; query1[LN],&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; query1[AMT],&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; query1[CITY]&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I change the values in the slicer why these date measures are not filtering data according to the slicer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2024 13:08:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-new-calculated-table-and-filter-it-dynamically/m-p/4039498#M160163</guid>
      <dc:creator>Bhargav150</dc:creator>
      <dc:date>2024-07-12T13:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to create new calculated table and filter it dynamically using measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-new-calculated-table-and-filter-it-dynamically/m-p/4041774#M160261</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="448029" data-lia-user-login="Bhargav150" class="lia-mention lia-mention-user"&gt;Bhargav150&lt;/a&gt;&amp;nbsp;without model and details it is hard to spot issue.&lt;/P&gt;
&lt;P&gt;Still, try v2 below&lt;/P&gt;
&lt;P&gt;NewTable v2 =&lt;/P&gt;
&lt;P&gt;VAR __Start_Date = Min('Date Table'[Date]&lt;/P&gt;
&lt;P&gt;VAR __End_Date = Max('Date Table'[Date]&lt;/P&gt;
&lt;P&gt;RETURN&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;SUMMARIZE (&lt;/P&gt;
&lt;P&gt;FILTER (&lt;/P&gt;
&lt;P&gt;query1,&lt;/P&gt;
&lt;P&gt;query1[SNAP_DATE] &amp;gt;= __Start_Date &amp;amp;&amp;amp;&lt;/P&gt;
&lt;P&gt;query1[SNAP_DATE] &amp;lt;= __End_Date&lt;/P&gt;
&lt;P&gt;),&lt;/P&gt;
&lt;P&gt;query1[ID],&lt;/P&gt;
&lt;P&gt;query1[LN],&lt;/P&gt;
&lt;P&gt;query1[AMT],&lt;/P&gt;
&lt;P&gt;query1[CITY]&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2024 06:29:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-new-calculated-table-and-filter-it-dynamically/m-p/4041774#M160261</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2024-07-15T06:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to create new calculated table and filter it dynamically using measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-new-calculated-table-and-filter-it-dynamically/m-p/4041878#M160264</link>
      <description>&lt;P&gt;Not working &lt;span class="lia-unicode-emoji" title=":pensive_face:"&gt;😔&lt;/span&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="555045" data-lia-user-login="some_bih" class="lia-mention lia-mention-user"&gt;some_bih&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2024 07:14:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-new-calculated-table-and-filter-it-dynamically/m-p/4041878#M160264</guid>
      <dc:creator>Bhargav150</dc:creator>
      <dc:date>2024-07-15T07:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to create new calculated table and filter it dynamically using measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-new-calculated-table-and-filter-it-dynamically/m-p/4041900#M160267</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="448029" data-lia-user-login="Bhargav150" class="lia-mention lia-mention-user"&gt;Bhargav150&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Based on my testing, please &lt;SPAN&gt;try the following methods:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;1.Create the sample table.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;2.Create the new calculated table.&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;NewTable = 
SUMMARIZE (
	query1,
    query1[SNAP_DATE],
    query1[ID],
    query1[LN],
    query1[AMT],
    query1[CITY]
)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;SPAN&gt;3.&lt;/SPAN&gt;&lt;SPAN&gt;Create the new relationship between date table and calculated table.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;4.Change the date range in the slicer visual.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;5&lt;/SPAN&gt;&lt;SPAN&gt;.The result is shown below.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Wisdom Wu&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2024 07:18:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-new-calculated-table-and-filter-it-dynamically/m-p/4041900#M160267</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-15T07:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to create new calculated table and filter it dynamically using measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-new-calculated-table-and-filter-it-dynamically/m-p/4041926#M160269</link>
      <description>&lt;P&gt;Hi Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;FYI, the SNAPSHOT_DATE column updates daily with yesterday's date, but apart from that, the remaining columns' data is 90 percent similar. If I include SNAPSHOT_DATE in the summary, it will cause many duplicates. That's the problem here.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2024 07:30:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-new-calculated-table-and-filter-it-dynamically/m-p/4041926#M160269</guid>
      <dc:creator>Bhargav150</dc:creator>
      <dc:date>2024-07-15T07:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to create new calculated table and filter it dynamically using measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-new-calculated-table-and-filter-it-dynamically/m-p/4042114#M160293</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="448029" data-lia-user-login="Bhargav150" class="lia-mention lia-mention-user"&gt;Bhargav150&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;The slicer visual can’t influence the calculated table.&lt;/P&gt;
&lt;P&gt;Besides, try to calculate the measure to filter the new table.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
var _date = SELECTEDVALUE(NewTable[SNAP_DATE])
RETURN
IF(_date &amp;gt;= [Start Date] &amp;amp;&amp;amp; _date &amp;lt;= [End Date], 1, 0)&lt;/LI-CODE&gt;
&lt;P&gt;Then, set the show items is 1.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Viewing the following document to learn more information.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/transform-model/desktop-calculated-tables" target="_blank"&gt;Using calculated tables in Power BI Desktop - Power BI | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Wisdom Wu&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2024 09:05:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-new-calculated-table-and-filter-it-dynamically/m-p/4042114#M160293</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-15T09:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to create new calculated table and filter it dynamically using measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-new-calculated-table-and-filter-it-dynamically/m-p/4878755#M185900</link>
      <description>&lt;P&gt;hey, check this out, it might help you:&amp;nbsp;&lt;A href="https://youtu.be/L9reA7CxfSg?si=esdvKGf-EZTlopQp" target="_blank"&gt;https://youtu.be/L9reA7CxfSg?si=esdvKGf-EZTlopQp&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Nov 2025 15:16:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-new-calculated-table-and-filter-it-dynamically/m-p/4878755#M185900</guid>
      <dc:creator>theov</dc:creator>
      <dc:date>2025-11-18T15:16:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to create new calculated table and filter it dynamically using measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-new-calculated-table-and-filter-it-dynamically/m-p/4878832#M185905</link>
      <description>&lt;P&gt;Asegúrate de que exista una relación: Tabla de Fechas[Fecha] → query1[SNAP_DATE] Tipo: Many-to-One Dirección: Single o Both (según necesidad, Better is Single) Pon el segmentador en Tabla de Fechas[Fecha]. Luego NO necesitas medidas como filtros, porque los slicers ya filtran directamente query1.ón: &lt;STRONG&gt;Single o Both&lt;/STRONG&gt; (según necesidad, Better is Single)&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Pon el segmentador en &lt;STRONG&gt;Tabla de Fechas[Fecha]&lt;/STRONG&gt;.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Luego NO necesitas medidas como filtros, porque los slicers ya filtran directamente query1.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Nov 2025 16:42:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-new-calculated-table-and-filter-it-dynamically/m-p/4878832#M185905</guid>
      <dc:creator>Heavy1234</dc:creator>
      <dc:date>2025-11-18T16:42:38Z</dc:date>
    </item>
  </channel>
</rss>

