<?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 help calculating Repeat Customers in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-help-calculating-Repeat-Customers/m-p/4721433#M180826</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1283052" data-lia-user-login="nascarfan22" class="lia-mention lia-mention-user"&gt;nascarfan22&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;If you’ve gone through the shared responses and reference links, and they helped solve your issue, please mark the most helpful reply as the &lt;STRONG data-start="241" data-end="262"&gt;Accepted Solution&lt;/STRONG&gt;. It really helps others in the community who might be facing the same kind of problem.&lt;BR /&gt;&lt;BR /&gt;Thank You.&lt;/P&gt;</description>
    <pubDate>Thu, 05 Jun 2025 12:26:37 GMT</pubDate>
    <dc:creator>V-yubandi-msft</dc:creator>
    <dc:date>2025-06-05T12:26:37Z</dc:date>
    <item>
      <title>DAX help calculating Repeat Customers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-help-calculating-Repeat-Customers/m-p/4712769#M180489</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I’m working in Power BI and trying to create a DAX formula to classify purchasers as either &lt;STRONG&gt;Repeat Customers&amp;nbsp;&lt;/STRONG&gt;or &lt;STRONG&gt;Single Customers&amp;nbsp;&lt;/STRONG&gt;based on their Customer ID and the dates they made purchases.&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;If a customer makes multiple purchases on the &lt;STRONG&gt;same date&lt;/STRONG&gt; (e.g., 5/1/2025), they are considered a &lt;STRONG&gt;Single Customer&lt;/STRONG&gt;.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;If they make purchases on &lt;STRONG&gt;multiple different dates&lt;/STRONG&gt; (e.g., 5/1/2025 and 5/2/2025), they are classified as a &lt;STRONG&gt;Repeat Customer&lt;/STRONG&gt;.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;If I were doing this in Excel, I would use a Pivot Table to distinct count the number of purchase dates per Customer ID, then use a COUNTIF to determine how many customers have only one purchase date (Single Customer) versus more than one (Repeat Customer). This is what I’m trying to replicate using DAX in Power BI.&lt;BR /&gt;&lt;BR /&gt;These are the DAX formulas I've tried:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;Single_Customers = COUNTROWS(filter(DISTINCT('Sales'[Customer ID]),CALCULATE(COUNT('Sales'[Sales Date]))=1))
Repeat_Customers = COUNTROWS(filter(DISTINCT('Sales'[Customer ID]),CALCULATE(COUNT('Sales'[Sales Date]))&amp;gt;1))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;Single_Customers = 
COUNTROWS(
    FILTER(
        VALUES('Sales'[Customer ID]),
        CALCULATE(DISTINCTCOUNT('Sales'[Sales Date])) = 1
    )
)

Repeat_Customers = 
COUNTROWS(
    FILTER(
        VALUES('Sales'[Customer ID]),
        CALCULATE(DISTINCTCOUNT('Sales'[Sales Date])) &amp;gt; 1
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;Here is some sample data. If I did this in excel with a pivot table and distinct count it, I'd have 5 Single Customers and 1 Repeat Customer.&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Customer ID&lt;/TD&gt;&lt;TD&gt;Sales Date&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3808&lt;/TD&gt;&lt;TD&gt;2/11/2025&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1833&lt;/TD&gt;&lt;TD&gt;5/16/2025&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3808&lt;/TD&gt;&lt;TD&gt;2/11/2025&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2879&lt;/TD&gt;&lt;TD&gt;2/11/2025&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1727&lt;/TD&gt;&lt;TD&gt;5/16/2025&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1727&lt;/TD&gt;&lt;TD&gt;4/18/2025&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2036&lt;/TD&gt;&lt;TD&gt;2/11/2025&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1128&lt;/TD&gt;&lt;TD&gt;4/18/2025&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 May 2025 16:37:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-help-calculating-Repeat-Customers/m-p/4712769#M180489</guid>
      <dc:creator>nascarfan22</dc:creator>
      <dc:date>2025-05-29T16:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: DAX help calculating Repeat Customers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-help-calculating-Repeat-Customers/m-p/4712840#M180493</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1283052" data-lia-user-login="nascarfan22" class="lia-mention lia-mention-user"&gt;nascarfan22&lt;/a&gt;&amp;nbsp;Create a calculated column to count the distinct purchase dates for each customer:&lt;/P&gt;
&lt;P&gt;DAX&lt;BR /&gt;DistinctPurchaseDates = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;DISTINCTCOUNT('Sales'[Sales Date]),&lt;BR /&gt;ALLEXCEPT('Sales', 'Sales'[Customer ID])&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a calculated column to classify each customer as either "Single Customer" or "Repeat Customer":&lt;/P&gt;
&lt;P&gt;DAX&lt;BR /&gt;CustomerType = &lt;BR /&gt;IF(&lt;BR /&gt;'Sales'[DistinctPurchaseDates] = 1,&lt;BR /&gt;"Single Customer",&lt;BR /&gt;"Repeat Customer"&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To get the count of Single Customers and Repeat Customers, you can create measures:&lt;/P&gt;
&lt;P&gt;DAX&lt;BR /&gt;Single_Customers = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;DISTINCTCOUNT('Sales'[Customer ID]),&lt;BR /&gt;'Sales'[CustomerType] = "Single Customer"&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;Repeat_Customers = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;DISTINCTCOUNT('Sales'[Customer ID]),&lt;BR /&gt;'Sales'[CustomerType] = "Repeat Customer"&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Thu, 29 May 2025 17:15:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-help-calculating-Repeat-Customers/m-p/4712840#M180493</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-05-29T17:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: DAX help calculating Repeat Customers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-help-calculating-Repeat-Customers/m-p/4712895#M180499</link>
      <description>&lt;P&gt;Hi, this solution gives me a split of customers that is 90% repeat and 10% single. When I calculate it in excel it's closer to 60% repeat and 40% single. Is there a step that could have been missed?&lt;/P&gt;</description>
      <pubDate>Thu, 29 May 2025 17:55:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-help-calculating-Repeat-Customers/m-p/4712895#M180499</guid>
      <dc:creator>nascarfan22</dc:creator>
      <dc:date>2025-05-29T17:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: DAX help calculating Repeat Customers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-help-calculating-Repeat-Customers/m-p/4713084#M180510</link>
      <description>&lt;P&gt;hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1283052" data-lia-user-login="nascarfan22" class="lia-mention lia-mention-user"&gt;nascarfan22&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i am using your sample data above, please try if this match to your need.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. create a calculated column to check single or repeat.&lt;/P&gt;
&lt;DIV&gt;
&lt;PRE&gt;&lt;SPAN&gt;Check =&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;_Count&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;COUNTX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &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;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Sales Date]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;&amp;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;[Sales Date]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; ),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Customer ID]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Return&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&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;1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"Repeat"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"Single"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;2. create two measures for single and repeat&lt;/P&gt;
&lt;DIV&gt;
&lt;PRE&gt;&lt;SPAN&gt;Single =&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;DISTINCTCOUNT&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;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Check]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"Single"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;PRE&gt;&lt;SPAN&gt;Repeat =&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;DISTINCTCOUNT&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;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Check]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"Repeat"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Hope this will help.&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 30 May 2025 00:40:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-help-calculating-Repeat-Customers/m-p/4713084#M180510</guid>
      <dc:creator>Irwan</dc:creator>
      <dc:date>2025-05-30T00:40:40Z</dc:date>
    </item>
    <item>
      <title>Re: DAX help calculating Repeat Customers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-help-calculating-Repeat-Customers/m-p/4713639#M180540</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1283052" data-lia-user-login="nascarfan22" class="lia-mention lia-mention-user"&gt;nascarfan22&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P data-start="72" data-end="139"&gt;Thank you for posting your query in the Microsoft Fabric Community.&lt;/P&gt;
&lt;P data-start="141" data-end="293"&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="490030" data-lia-user-login="Irwan" class="lia-mention lia-mention-user"&gt;Irwan&lt;/a&gt;&amp;nbsp;, has provided a detailed response that aligns with your requirements. Could you please review his guidance along with the provided PBIX file.&lt;/P&gt;
&lt;P data-start="295" data-end="405"&gt;If you need any further clarification or additional support, feel free to let us know we’re ready&amp;nbsp; to assist.&lt;/P&gt;
&lt;P data-start="295" data-end="405"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="407" data-end="434"&gt;Best regards,&lt;BR data-start="420" data-end="423" /&gt;Yugandhar.&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2025 08:40:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-help-calculating-Repeat-Customers/m-p/4713639#M180540</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-05-30T08:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: DAX help calculating Repeat Customers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-help-calculating-Repeat-Customers/m-p/4716465#M180656</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1283052" data-lia-user-login="nascarfan22" class="lia-mention lia-mention-user"&gt;nascarfan22&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;May I ask if you have resolved this issue? If so, please mark the helpful reply and &lt;STRONG&gt;accept it as the solution.&lt;/STRONG&gt; This will be helpful for other community members who have similar problems to solve it faster.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jun 2025 08:41:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-help-calculating-Repeat-Customers/m-p/4716465#M180656</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-06-02T08:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: DAX help calculating Repeat Customers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-help-calculating-Repeat-Customers/m-p/4721433#M180826</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1283052" data-lia-user-login="nascarfan22" class="lia-mention lia-mention-user"&gt;nascarfan22&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;If you’ve gone through the shared responses and reference links, and they helped solve your issue, please mark the most helpful reply as the &lt;STRONG data-start="241" data-end="262"&gt;Accepted Solution&lt;/STRONG&gt;. It really helps others in the community who might be facing the same kind of problem.&lt;BR /&gt;&lt;BR /&gt;Thank You.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 12:26:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-help-calculating-Repeat-Customers/m-p/4721433#M180826</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-06-05T12:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: DAX help calculating Repeat Customers</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-help-calculating-Repeat-Customers/m-p/4725921#M181031</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1283052" data-lia-user-login="nascarfan22" class="lia-mention lia-mention-user"&gt;nascarfan22&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Could you confirm if your issue has been resolved or if you're still facing challenges. If the solution worked for you, please consider marking it as the accepted solution so it can help other community members. If you're still experiencing issues, feel free to share the details.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank You.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jun 2025 14:34:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-help-calculating-Repeat-Customers/m-p/4725921#M181031</guid>
      <dc:creator>V-yubandi-msft</dc:creator>
      <dc:date>2025-06-09T14:34:51Z</dc:date>
    </item>
  </channel>
</rss>

