<?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: Dax to calculate customers based on there performance  last year in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4782106#M183119</link>
    <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Please try the below approach,&lt;/P&gt;&lt;P&gt;For example you have the data as below:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;So, you have to create the below calculated columns,&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Prev Year =&lt;/SPAN&gt; &lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Year]&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IsCust_Gt_15000_PY =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;prev_year_amount&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Order Amount]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Customer Id]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;EARLIER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Customer Id]&lt;/SPAN&gt;&lt;SPAN&gt;) &amp;amp;&amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Year]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;EARLIER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Prev Year]&lt;/SPAN&gt;&lt;SPAN&gt;)))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;return&lt;/SPAN&gt; &lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;prev_year_amount&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;15000&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;So, your final result would be like below,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;you just have to filter the records with&amp;nbsp;&lt;SPAN&gt;IsCust_Gt_15000_PY=1&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Thu, 31 Jul 2025 03:12:00 GMT</pubDate>
    <dc:creator>Aburar_123</dc:creator>
    <dc:date>2025-07-31T03:12:00Z</dc:date>
    <item>
      <title>Dax to calculate customers based on there performance  last year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4781273#M183092</link>
      <description>&lt;P&gt;Hi Guys&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I am trying to track segment customer based on their perfromance last year.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;logic - List of customers that have spend more than 10k in the last calleder year&amp;nbsp; then check if they exisit thisyear.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;To do this i was intending to use intersect, but i am unable to calculate the list of cusotmer Last year as a single virtual column.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;this code works fine in Dax studios but is not accurate in a measure&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;* it is critical to get only customerlist column as having multiple columns is treated a single entity in Except and intersect function.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; My_Table =&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;CALCULATETABLE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Append_Fact[CustomerList_Filtered]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt; ,&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt; &lt;SPAN&gt;SUMMARIZE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&amp;nbsp;&lt;BR /&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt; Append_Fact , &lt;SPAN&gt;Append_Fact[Year]&lt;/SPAN&gt;=&lt;SPAN&gt;2024&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt; ,&amp;nbsp;&lt;BR /&gt;&lt;SPAN&gt;Append_Fact[CustomerList_Filtered]&lt;/SPAN&gt; , &lt;SPAN&gt;Append_Fact[Year]&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;,&lt;BR /&gt;&lt;SPAN&gt;"Rev"&lt;/SPAN&gt; , &lt;SPAN&gt;[SWR]&lt;/SPAN&gt; &lt;SPAN&gt;)&lt;/SPAN&gt; ,&lt;BR /&gt;&lt;SPAN&gt;[rev]&lt;/SPAN&gt;&amp;gt;&lt;SPAN&gt;15000&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jul 2025 11:30:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4781273#M183092</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-07-30T11:30:03Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to calculate customers based on there performance  last year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4781303#M183095</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;Create a calculated table for customers who spent more than 10k last year:&lt;/P&gt;
&lt;P&gt;Customers_Last_Year = &lt;BR /&gt;CALCULATETABLE(&lt;BR /&gt;VALUES(Append_Fact[CustomerList_Filtered]),&lt;BR /&gt;FILTER(&lt;BR /&gt;SUMMARIZE(&lt;BR /&gt;FILTER(Append_Fact, Append_Fact[Year] = 2023), // Adjust the year as needed&lt;BR /&gt;Append_Fact[CustomerList_Filtered],&lt;BR /&gt;"Rev", [SWR]&lt;BR /&gt;),&lt;BR /&gt;[Rev] &amp;gt; 10000&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a calculated table for customers this year:&lt;/P&gt;
&lt;P&gt;dax&lt;BR /&gt;Customers_This_Year = &lt;BR /&gt;CALCULATETABLE(&lt;BR /&gt;VALUES(Append_Fact[CustomerList_Filtered]),&lt;BR /&gt;Append_Fact[Year] = 2024 // Adjust the year as needed&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use the INTERSECT function to find common customers:&lt;/P&gt;
&lt;P&gt;dax&lt;BR /&gt;Common_Customers = &lt;BR /&gt;INTERSECT(Customers_Last_Year, Customers_This_Year)&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jul 2025 11:47:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4781303#M183095</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-07-30T11:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to calculate customers based on there performance  last year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4781379#M183096</link>
      <description>&lt;P&gt;If you are only interested in the customers who spent 15k+ in 2024, and you don't need to slice by other dimensions like product category, it would probably be more efficient to create a calculated column on the customer dimension, either as a true / false value or showing the actual amount spent, e.g.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;'Customer'[Over 15k 2024] =
VAR Revenue =
    CALCULATE ( [SWR], Append_Fact[Year] = 2024 )
VAR Result = Revenue &amp;gt; 15000
RETURN
    Result
&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 30 Jul 2025 12:21:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4781379#M183096</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2025-07-30T12:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to calculate customers based on there performance  last year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4781796#M183104</link>
      <description>&lt;P&gt;Can you please provide a sample of the tables and show in an image the inaccuracy you are complaining about?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jul 2025 18:21:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4781796#M183104</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2025-07-30T18:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to calculate customers based on there performance  last year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4782106#M183119</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Please try the below approach,&lt;/P&gt;&lt;P&gt;For example you have the data as below:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;So, you have to create the below calculated columns,&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Prev Year =&lt;/SPAN&gt; &lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Year]&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IsCust_Gt_15000_PY =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;prev_year_amount&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Order Amount]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Customer Id]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;EARLIER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Customer Id]&lt;/SPAN&gt;&lt;SPAN&gt;) &amp;amp;&amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Year]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;EARLIER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Prev Year]&lt;/SPAN&gt;&lt;SPAN&gt;)))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;return&lt;/SPAN&gt; &lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;prev_year_amount&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;15000&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;So, your final result would be like below,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;you just have to filter the records with&amp;nbsp;&lt;SPAN&gt;IsCust_Gt_15000_PY=1&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 31 Jul 2025 03:12:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4782106#M183119</guid>
      <dc:creator>Aburar_123</dc:creator>
      <dc:date>2025-07-31T03:12:00Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to calculate customers based on there performance  last year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4782776#M183135</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;,&lt;BR /&gt;I would also take a moment to thank &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="625922" data-lia-user-login="bhanu_gautam" class="lia-mention lia-mention-user"&gt;bhanu_gautam&lt;/a&gt;&amp;nbsp;, for actively participating in the community forum and for the solutions you have been sharing in the community forum. Your contributions make a real difference.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;You can achieve this by creating two calculated tables &amp;nbsp;one for customers who spent more than 10k last year and another for customers this year &amp;nbsp;and then use the INTERSECT function to get the common ones. This will return only the Customer column as needed.&lt;BR /&gt;&lt;BR /&gt;I tested it with my sample data, and it worked fine. Please find the attached screenshot and Pbix for your reference.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;Hope the above provided information help you resolve the issue, if you have any further concerns or queries, please feel free to reach out to us.&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Harshitha.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2025 10:11:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4782776#M183135</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-07-31T10:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to calculate customers based on there performance  last year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4785563#M183231</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;,&lt;BR /&gt;I hope the information provided above assists you in resolving the issue. If you have any additional questions or concerns, please do not hesitate to contact us. We are here to support you and will be happy to help with any further assistance you may need.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Harshitha.&lt;/P&gt;</description>
      <pubDate>Sun, 03 Aug 2025 12:03:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4785563#M183231</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-08-03T12:03:53Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to calculate customers based on there performance  last year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4785834#M183240</link>
      <description>&lt;P&gt;I have used the same code it seems to be working now.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;My original issue was resolved by i think just update the Power BI version, but this code seems to not be eliminate the existing filter context.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Aug 2025 02:42:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4785834#M183240</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-08-04T02:42:38Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to calculate customers based on there performance  last year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4785836#M183241</link>
      <description>&lt;P&gt;i get that but , the customer demention also has another (store level) dimention to it and this is causing all the caos.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Aug 2025 02:44:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4785836#M183241</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-08-04T02:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: Dax to calculate customers based on there performance  last year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4785840#M183242</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="625922" data-lia-user-login="bhanu_gautam" class="lia-mention lia-mention-user"&gt;bhanu_gautam&lt;/a&gt;&amp;nbsp; i am alreadly using this logic , but the trouble now is with this code is, it is not ignoring 100% of the filter context in the report even after using Allexcept .&amp;nbsp;&lt;BR /&gt;This code workes gread in the Dax editor but is playing up in the measure in the report tab.&amp;nbsp;&lt;BR /&gt;Need a code to generate the only the list of Customers for previous years who have spent more than 10K( or&amp;nbsp; x amount) using AllExept condition to all some filter contect to go through.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Aug 2025 02:49:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-to-calculate-customers-based-on-there-performance-last-year/m-p/4785840#M183242</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-08-04T02:49:31Z</dc:date>
    </item>
  </channel>
</rss>

