<?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: Other dax formula for Months with Purchase in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Other-dax-formula-for-Months-with-Purchase/m-p/4627125#M177138</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="494564" data-lia-user-login="Easley08" class="lia-mention lia-mention-user"&gt;Easley08&lt;/a&gt;&amp;nbsp;, Thank you for reaching out to the Microsoft Community Forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The issue with your current measure yielding 85 stems from an incorrect calculation of MonthsWithPurchase and potential date range mismatches.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try below solutions:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Use DATESBETWEEN to strictly enforce the date range from April 2024 to March 2025, ensuring the calculation only includes this period. It calculates the TransactionCount directly from the CustomerSummary table and computes MonthsWithPurchase by counting distinct months with purchases in the Sales table within the specified range. This approach leverages the pre-aggregated CustomerSummary table for transactions and avoids unnecessary recalculations.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Result =&lt;/P&gt;
&lt;P&gt;VAR StartDate = DATE(2024, 4, 1)&amp;nbsp; -- April 1, 2024&lt;/P&gt;
&lt;P&gt;VAR EndDate = DATE(2025, 3, 31)&amp;nbsp;&amp;nbsp; -- March 31, 2025&lt;/P&gt;
&lt;P&gt;VAR TransactionCount =&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE(&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUM(CustomerSummary[TransactionCount]),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATESBETWEEN('Date'[Date], StartDate, EndDate)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;
&lt;P&gt;VAR MonthsWithPurchase =&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE(&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DISTINCTCOUNT(Sales[Purchase Date].[Month]),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATESBETWEEN('Date'[Date], StartDate, EndDate),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NOT ISBLANK(Sales[Transactions])&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;
&lt;P&gt;RETURN&lt;/P&gt;
&lt;P&gt;DIVIDE(TransactionCount, MonthsWithPurchase, 0)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL start="2"&gt;
&lt;LI&gt;If you prefer a dynamic 12-month period ending at a specific date, this method uses DATESINPERIOD to calculate the running total over the last 12 months from a fixed end date. It ensures the TransactionCount and MonthsWithPurchase are calculated within this dynamic range, maintaining efficiency by using the CustomerSummary table for transactions and directly querying the Sales table for the distinct months with purchases. This is useful if your requirements change to a rolling period.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Result =&lt;/P&gt;
&lt;P&gt;VAR EndDate = DATE(2025, 3, 31)&amp;nbsp;&amp;nbsp; -- End of March 2025&lt;/P&gt;
&lt;P&gt;VAR TransactionCount =&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE(&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUM(CustomerSummary[TransactionCount]),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATESINPERIOD('Date'[Date], EndDate, -12, MONTH)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;
&lt;P&gt;VAR MonthsWithPurchase =&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE(&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DISTINCTCOUNT(Sales[Purchase Date].[Month]),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATESINPERIOD('Date'[Date], EndDate, -12, MONTH),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NOT ISBLANK(Sales[Transactions])&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;
&lt;P&gt;RETURN&lt;/P&gt;
&lt;P&gt;DIVIDE(TransactionCount, MonthsWithPurchase, 0)&lt;BR /&gt;&lt;BR /&gt;Both methods ensure TransactionCount sums to 456 for the period and calculate MonthsWithPurchase as 12 by counting distinct months with purchases in the specified range, yielding 456 / 12 = 38. They avoid the pitfall of using the precomputed MonthsWithPurchase from CustomerSummary, which was causing the incorrect result of 85.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this helped solve the issue, please consider marking it&amp;nbsp;&lt;STRONG&gt;'Accept as Solution&lt;/STRONG&gt;' so others with similar queries may find it more easily. If not, please share the details, always happy to help.&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Thu, 27 Mar 2025 09:15:45 GMT</pubDate>
    <dc:creator>v-hashadapu</dc:creator>
    <dc:date>2025-03-27T09:15:45Z</dc:date>
    <item>
      <title>Other dax formula for Months with Purchase</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Other-dax-formula-for-Months-with-Purchase/m-p/4623961#M176983</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is there another formula with this&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;Months w Purchase = CALCULATE(&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; DISTINCTCOUNT(Sales[Purchase Date].[Month]),&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; FILTER(Sales, NOT(ISBLANK(Sales[Transactions]))&amp;nbsp;))&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;im getting the result that i want if the table is in by year and month&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;RESULT = CALCULATE(DIVIDE([Transaction Count],[Months w Purchase],0),DATESINPERIOD('Date'[Date],MAX('Date'[Date]),-12,MONTH))&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;but if i add it with Customer email it crash and the loading time is so slow&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 25 Mar 2025 10:25:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Other-dax-formula-for-Months-with-Purchase/m-p/4623961#M176983</guid>
      <dc:creator>Easley08</dc:creator>
      <dc:date>2025-03-25T10:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: Other dax formula for Months with Purchase</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Other-dax-formula-for-Months-with-Purchase/m-p/4624056#M176994</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="494564" data-lia-user-login="Easley08" class="lia-mention lia-mention-user"&gt;Easley08&lt;/a&gt;&amp;nbsp;Create a calculated column for the number of months with purchases per customer&lt;/P&gt;
&lt;P&gt;MonthsWithPurchasePerCustomer = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;DISTINCTCOUNT(Sales[Purchase Date].[Month]),&lt;BR /&gt;FILTER(Sales, NOT(ISBLANK(Sales[Transactions]))),&lt;BR /&gt;ALLEXCEPT(Sales, Sales[Customer Email])&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Create a measure to calculate the result&lt;/P&gt;
&lt;P&gt;DAX&lt;BR /&gt;Result = &lt;BR /&gt;VAR MaxDate = MAX('Date'[Date])&lt;BR /&gt;VAR StartDate = EDATE(MaxDate, -12)&lt;BR /&gt;VAR TransactionCount = [Transaction Count]&lt;BR /&gt;VAR MonthsWithPurchase = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;MAX(Sales[MonthsWithPurchasePerCustomer]),&lt;BR /&gt;DATESINPERIOD('Date'[Date], MaxDate, -12, MONTH)&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;DIVIDE(TransactionCount, MonthsWithPurchase, 0)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ow, when you add the Customer email to your table, the performance should be better because the number of months with purchases is pre-calculated per customer.&lt;/P&gt;
&lt;P&gt;If you still experience performance issues, consider creating a summary table that aggregates the data at the customer level and use that table for your calculations. This can further reduce the amount of data being processed in real-time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DAX&lt;BR /&gt;CustomerSummary = &lt;BR /&gt;SUMMARIZE(&lt;BR /&gt;Sales,&lt;BR /&gt;Sales[Customer Email],&lt;BR /&gt;"MonthsWithPurchase", CALCULATE(&lt;BR /&gt;DISTINCTCOUNT(Sales[Purchase Date].[Month]),&lt;BR /&gt;FILTER(Sales, NOT(ISBLANK(Sales[Transactions])))&lt;BR /&gt;),&lt;BR /&gt;"TransactionCount", SUM(Sales[Transactions])&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then, you can create your measure based on this summary table:&lt;/P&gt;
&lt;P&gt;DAX&lt;BR /&gt;Result = &lt;BR /&gt;VAR MaxDate = MAX('Date'[Date])&lt;BR /&gt;VAR StartDate = EDATE(MaxDate, -12)&lt;BR /&gt;VAR TransactionCount = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;SUM(CustomerSummary[TransactionCount]),&lt;BR /&gt;DATESINPERIOD('Date'[Date], MaxDate, -12, MONTH)&lt;BR /&gt;)&lt;BR /&gt;VAR MonthsWithPurchase = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;MAX(CustomerSummary[MonthsWithPurchase]),&lt;BR /&gt;DATESINPERIOD('Date'[Date], MaxDate, -12, MONTH)&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;DIVIDE(TransactionCount, MonthsWithPurchase, 0)&lt;/P&gt;</description>
      <pubDate>Tue, 25 Mar 2025 11:45:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Other-dax-formula-for-Months-with-Purchase/m-p/4624056#M176994</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-03-25T11:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: Other dax formula for Months with Purchase</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Other-dax-formula-for-Months-with-Purchase/m-p/4625362#M177046</link>
      <description>&lt;P&gt;Hi sir,&amp;nbsp;&lt;/P&gt;&lt;P&gt;currently the summarize table works fine but can you show also to get only running total of 1year from March 2025 to Apr 2024 only seems the datesinperiod not working.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here is the expected value&amp;nbsp;&lt;/P&gt;&lt;P&gt;456 total from Apr 2024 - Mar 2025&amp;nbsp;&lt;/P&gt;&lt;P&gt;456 / 12 = 38. but currently im getting 85&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 07:40:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Other-dax-formula-for-Months-with-Purchase/m-p/4625362#M177046</guid>
      <dc:creator>Easley08</dc:creator>
      <dc:date>2025-03-26T07:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Other dax formula for Months with Purchase</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Other-dax-formula-for-Months-with-Purchase/m-p/4627125#M177138</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="494564" data-lia-user-login="Easley08" class="lia-mention lia-mention-user"&gt;Easley08&lt;/a&gt;&amp;nbsp;, Thank you for reaching out to the Microsoft Community Forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The issue with your current measure yielding 85 stems from an incorrect calculation of MonthsWithPurchase and potential date range mismatches.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try below solutions:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Use DATESBETWEEN to strictly enforce the date range from April 2024 to March 2025, ensuring the calculation only includes this period. It calculates the TransactionCount directly from the CustomerSummary table and computes MonthsWithPurchase by counting distinct months with purchases in the Sales table within the specified range. This approach leverages the pre-aggregated CustomerSummary table for transactions and avoids unnecessary recalculations.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Result =&lt;/P&gt;
&lt;P&gt;VAR StartDate = DATE(2024, 4, 1)&amp;nbsp; -- April 1, 2024&lt;/P&gt;
&lt;P&gt;VAR EndDate = DATE(2025, 3, 31)&amp;nbsp;&amp;nbsp; -- March 31, 2025&lt;/P&gt;
&lt;P&gt;VAR TransactionCount =&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE(&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUM(CustomerSummary[TransactionCount]),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATESBETWEEN('Date'[Date], StartDate, EndDate)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;
&lt;P&gt;VAR MonthsWithPurchase =&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE(&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DISTINCTCOUNT(Sales[Purchase Date].[Month]),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATESBETWEEN('Date'[Date], StartDate, EndDate),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NOT ISBLANK(Sales[Transactions])&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;
&lt;P&gt;RETURN&lt;/P&gt;
&lt;P&gt;DIVIDE(TransactionCount, MonthsWithPurchase, 0)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL start="2"&gt;
&lt;LI&gt;If you prefer a dynamic 12-month period ending at a specific date, this method uses DATESINPERIOD to calculate the running total over the last 12 months from a fixed end date. It ensures the TransactionCount and MonthsWithPurchase are calculated within this dynamic range, maintaining efficiency by using the CustomerSummary table for transactions and directly querying the Sales table for the distinct months with purchases. This is useful if your requirements change to a rolling period.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Result =&lt;/P&gt;
&lt;P&gt;VAR EndDate = DATE(2025, 3, 31)&amp;nbsp;&amp;nbsp; -- End of March 2025&lt;/P&gt;
&lt;P&gt;VAR TransactionCount =&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE(&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUM(CustomerSummary[TransactionCount]),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATESINPERIOD('Date'[Date], EndDate, -12, MONTH)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;
&lt;P&gt;VAR MonthsWithPurchase =&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE(&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DISTINCTCOUNT(Sales[Purchase Date].[Month]),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATESINPERIOD('Date'[Date], EndDate, -12, MONTH),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NOT ISBLANK(Sales[Transactions])&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;
&lt;P&gt;RETURN&lt;/P&gt;
&lt;P&gt;DIVIDE(TransactionCount, MonthsWithPurchase, 0)&lt;BR /&gt;&lt;BR /&gt;Both methods ensure TransactionCount sums to 456 for the period and calculate MonthsWithPurchase as 12 by counting distinct months with purchases in the specified range, yielding 456 / 12 = 38. They avoid the pitfall of using the precomputed MonthsWithPurchase from CustomerSummary, which was causing the incorrect result of 85.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this helped solve the issue, please consider marking it&amp;nbsp;&lt;STRONG&gt;'Accept as Solution&lt;/STRONG&gt;' so others with similar queries may find it more easily. If not, please share the details, always happy to help.&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Mar 2025 09:15:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Other-dax-formula-for-Months-with-Purchase/m-p/4627125#M177138</guid>
      <dc:creator>v-hashadapu</dc:creator>
      <dc:date>2025-03-27T09:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: Other dax formula for Months with Purchase</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Other-dax-formula-for-Months-with-Purchase/m-p/4640772#M177682</link>
      <description>&lt;P&gt;&lt;SPAN data-teams="true"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="494564" data-lia-user-login="Easley08" class="lia-mention lia-mention-user"&gt;Easley08&lt;/a&gt;&amp;nbsp;, Please let us know if your issue is solved. If it is, consider marking the answer that helped&amp;nbsp;&lt;STRONG&gt;'Accept as Solution'&lt;/STRONG&gt;, so others with similar queries can find it easily. If not, please share the details.&lt;BR /&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2025 10:19:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Other-dax-formula-for-Months-with-Purchase/m-p/4640772#M177682</guid>
      <dc:creator>v-hashadapu</dc:creator>
      <dc:date>2025-04-07T10:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: Other dax formula for Months with Purchase</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Other-dax-formula-for-Months-with-Purchase/m-p/4646793#M177870</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/494564" target="_blank"&gt;@Easley08&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;, Please let us know if your issue is solved. If it is, consider marking the answer that helped&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;'Accept as Solution'&lt;/STRONG&gt;&lt;SPAN&gt;, so others with similar queries can find it easily. If not, please share the details.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2025 11:43:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Other-dax-formula-for-Months-with-Purchase/m-p/4646793#M177870</guid>
      <dc:creator>v-hashadapu</dc:creator>
      <dc:date>2025-04-10T11:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: Other dax formula for Months with Purchase</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Other-dax-formula-for-Months-with-Purchase/m-p/4657053#M178307</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/494564" target="_blank" rel="noopener"&gt;@Easley08&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;, Please let us know if your issue is solved. If it is, consider marking the answer that helped&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;'Accept as Solution'&lt;/STRONG&gt;&lt;SPAN&gt;, so others with similar queries can find it easily. If not, please share the details.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jun 2025 07:36:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Other-dax-formula-for-Months-with-Purchase/m-p/4657053#M178307</guid>
      <dc:creator>v-hashadapu</dc:creator>
      <dc:date>2025-06-16T07:36:51Z</dc:date>
    </item>
  </channel>
</rss>

