<?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: New customer with first invoice date and amount in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-customer-with-first-invoice-date-and-amount/m-p/4391789#M174348</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="923212" data-lia-user-login="BIEnthu" class="lia-mention lia-mention-user"&gt;BIEnthu&lt;/a&gt;&amp;nbsp;Create a calculated column for the first invoice date:&lt;/P&gt;
&lt;P&gt;FirstInvoiceDate = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;MIN('Invoice'[Invoice Date]),&lt;BR /&gt;ALLEXCEPT('CustomerTable', 'CustomerTable'[Customer Name])&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a calculated column for the first invoice amount:&lt;/P&gt;
&lt;P&gt;FirstInvoiceAmount = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;FIRSTNONBLANK('Invoice'[Invoice Amount], 1),&lt;BR /&gt;FILTER(&lt;BR /&gt;'Invoice',&lt;BR /&gt;'Invoice'[Invoice Date] = EARLIER('CustomerTable'[FirstInvoiceDate])&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a summary table to display the results:&lt;/P&gt;
&lt;P&gt;CustomerFirstInvoiceSummary = &lt;BR /&gt;SUMMARIZE(&lt;BR /&gt;'CustomerTable',&lt;BR /&gt;'CustomerTable'[Customer Name],&lt;BR /&gt;'CustomerTable'[FirstInvoiceDate],&lt;BR /&gt;'CustomerTable'[FirstInvoiceAmount]&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 03 Feb 2025 06:13:20 GMT</pubDate>
    <dc:creator>bhanu_gautam</dc:creator>
    <dc:date>2025-02-03T06:13:20Z</dc:date>
    <item>
      <title>New customer with first invoice date and amount</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-customer-with-first-invoice-date-and-amount/m-p/4391393#M174336</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I am trying to create report with customer name their first invoice date and invoice amount. I have a customer table and invoice date and invoice tables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using DAX&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Min_Date =&lt;/SPAN&gt; &lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;MIN&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Invoice'&lt;/SPAN&gt;&lt;SPAN&gt;[Invoice Date]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;ALLEXCEPT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'CustomerTable'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;'CustomerTable'&lt;/SPAN&gt;&lt;SPAN&gt;[Customer Name]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I am getting multiple records for the same customer with each invoice date. how can i get only the first customer row.&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I tried multiple things like getting the first appearance and also using filter on TOPN, it is not helping.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Any recommendations is much appreciated. Thank you for your help in advance&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 02 Feb 2025 19:43:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-customer-with-first-invoice-date-and-amount/m-p/4391393#M174336</guid>
      <dc:creator>BIEnthu</dc:creator>
      <dc:date>2025-02-02T19:43:48Z</dc:date>
    </item>
    <item>
      <title>Re: New customer with first invoice date and amount</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-customer-with-first-invoice-date-and-amount/m-p/4391789#M174348</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="923212" data-lia-user-login="BIEnthu" class="lia-mention lia-mention-user"&gt;BIEnthu&lt;/a&gt;&amp;nbsp;Create a calculated column for the first invoice date:&lt;/P&gt;
&lt;P&gt;FirstInvoiceDate = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;MIN('Invoice'[Invoice Date]),&lt;BR /&gt;ALLEXCEPT('CustomerTable', 'CustomerTable'[Customer Name])&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a calculated column for the first invoice amount:&lt;/P&gt;
&lt;P&gt;FirstInvoiceAmount = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;FIRSTNONBLANK('Invoice'[Invoice Amount], 1),&lt;BR /&gt;FILTER(&lt;BR /&gt;'Invoice',&lt;BR /&gt;'Invoice'[Invoice Date] = EARLIER('CustomerTable'[FirstInvoiceDate])&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a summary table to display the results:&lt;/P&gt;
&lt;P&gt;CustomerFirstInvoiceSummary = &lt;BR /&gt;SUMMARIZE(&lt;BR /&gt;'CustomerTable',&lt;BR /&gt;'CustomerTable'[Customer Name],&lt;BR /&gt;'CustomerTable'[FirstInvoiceDate],&lt;BR /&gt;'CustomerTable'[FirstInvoiceAmount]&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2025 06:13:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-customer-with-first-invoice-date-and-amount/m-p/4391789#M174348</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-02-03T06:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: New customer with first invoice date and amount</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-customer-with-first-invoice-date-and-amount/m-p/4395780#M174525</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="923212" data-lia-user-login="BIEnthu" class="lia-mention lia-mention-user"&gt;BIEnthu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the reply from&amp;nbsp;bhanu_gautam&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BIEnthu&amp;nbsp;, I have created a simple example data for testing, according to the test if there is a relationship between the two tables then every customer can get the earliest invoice date correctly, is there a relationship between your two tables? If my data structure is different from yours, could you please provide the sample data about both tables so that we can help you better?&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/Power-BI-Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;How to provide sample data in the Power BI Forum - Microsoft Fabric Community&lt;/A&gt;&amp;nbsp;Please remove any sensitive data in advance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My sample:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is no relationship between the two tables, the result will not be what you need.&lt;BR /&gt;&lt;img /&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;BR /&gt;Yulia Xu&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post &lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider &lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2025 07:23:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-customer-with-first-invoice-date-and-amount/m-p/4395780#M174525</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-02-05T07:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: New customer with first invoice date and amount</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-customer-with-first-invoice-date-and-amount/m-p/4396908#M174577</link>
      <description>&lt;P&gt;Are you trying to display the first record of the customer ? &amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="923212" data-lia-user-login="BIEnthu" class="lia-mention lia-mention-user"&gt;BIEnthu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2025 17:39:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-customer-with-first-invoice-date-and-amount/m-p/4396908#M174577</guid>
      <dc:creator>sangeethray_92</dc:creator>
      <dc:date>2025-02-05T17:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: New customer with first invoice date and amount</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-customer-with-first-invoice-date-and-amount/m-p/4397046#M174583</link>
      <description>&lt;P&gt;Yes, looking to display the first first record of each customer. Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2025 19:50:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-customer-with-first-invoice-date-and-amount/m-p/4397046#M174583</guid>
      <dc:creator>BIEnthu</dc:creator>
      <dc:date>2025-02-05T19:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: New customer with first invoice date and amount</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-customer-with-first-invoice-date-and-amount/m-p/4397050#M174584</link>
      <description>&lt;P&gt;Thank you bhanu_gautam and&amp;nbsp;&lt;SPAN&gt;Yulia Xu for your inputs!&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have 3 tables under this scenario. This is MS Fabric and i don't have option to create new/custom column&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Invoice Amount:&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Net Amount&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN&gt;Invoice Date&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Invoice Date&lt;/TD&gt;&lt;TD&gt;creation date&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN&gt;Customer&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Name&lt;/TD&gt;&lt;TD&gt;Address&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;zip&lt;/TD&gt;&lt;TD&gt;Rep&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Life Financials&lt;/TD&gt;&lt;TD&gt;20 Lincoln Ave&lt;/TD&gt;&lt;TD&gt;51231&lt;/TD&gt;&lt;TD&gt;Nicole&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;State Electric&lt;/TD&gt;&lt;TD&gt;500 Group Dr&lt;/TD&gt;&lt;TD&gt;62312&lt;/TD&gt;&lt;TD&gt;Jane&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Life Financials&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;20 Lincoln Ave&lt;/TD&gt;&lt;TD&gt;51231&lt;/TD&gt;&lt;TD&gt;Nicole&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2025 19:53:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-customer-with-first-invoice-date-and-amount/m-p/4397050#M174584</guid>
      <dc:creator>BIEnthu</dc:creator>
      <dc:date>2025-02-05T19:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: New customer with first invoice date and amount</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-customer-with-first-invoice-date-and-amount/m-p/4397076#M174586</link>
      <description>&lt;P&gt;create a calculated column in the invoice table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;first_date =&lt;BR /&gt;VAR A = CALCULATE(&lt;BR /&gt;MIN('Invoice'[Invoice Date]),&lt;BR /&gt;ALLEXCEPT('Invoice', 'Invoice'[customer id])&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;IF(A = 'Invoice'[Invoice Date], 1, 0)&lt;BR /&gt;&lt;BR /&gt;Use rhis column in the visual level filter and filter for 1.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;this post helps, then please give us Kudos and consider accepting it as a solution to help other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2025 20:27:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-customer-with-first-invoice-date-and-amount/m-p/4397076#M174586</guid>
      <dc:creator>sangeethray_92</dc:creator>
      <dc:date>2025-02-05T20:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: New customer with first invoice date and amount</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-customer-with-first-invoice-date-and-amount/m-p/4397374#M174593</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="923212" data-lia-user-login="BIEnthu" class="lia-mention lia-mention-user"&gt;BIEnthu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If tou just want to use measure. Try this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;First_Invoice_Date =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;MIN('Invoice'[Invoice Date]),&lt;BR /&gt;ALLEXCEPT('Invoice', 'Invoice'[customer id])&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First_Invoice_Amount =&lt;BR /&gt;VAR FirstDate = CALCULATE(&lt;BR /&gt;MIN('Invoice'[Invoice Date]),&lt;BR /&gt;ALLEXCEPT('Invoice', 'Invoice'[customer id])&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;CALCULATE(&lt;BR /&gt;SUM('Invoice'[Invoice Amount]),&lt;BR /&gt;'Invoice'[Invoice Date] = FirstDate&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;BR /&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution! And Kudos are appreciated&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2025 02:53:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-customer-with-first-invoice-date-and-amount/m-p/4397374#M174593</guid>
      <dc:creator>sangeethray_92</dc:creator>
      <dc:date>2025-02-06T02:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: New customer with first invoice date and amount</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-customer-with-first-invoice-date-and-amount/m-p/4587637#M175743</link>
      <description>&lt;P&gt;&lt;FONT&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="923212" data-lia-user-login="BIEnthu" class="lia-mention lia-mention-user"&gt;BIEnthu&lt;/a&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to apologize for the belated reply.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I didn't create a new column, I used your original DAX, and then I tried to build the relationship between the tables as shown in the screenshot to get the correct desired result.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Based on the information you've given so far, it doesn't seem like you have the same columns between the three tables? If this is not your complete data, you can try to build a relationship to see if it will meet your needs.&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Yulia Xu&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post &lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider &lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 09:52:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/New-customer-with-first-invoice-date-and-amount/m-p/4587637#M175743</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-02-27T09:52:33Z</dc:date>
    </item>
  </channel>
</rss>

