<?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 Finding Final amount Current Month ? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Finding-Final-amount-Current-Month/m-p/4807765#M183888</link>
    <description>&lt;P&gt;Hello, everybody&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any dax command where I can see the total amount for the current month?.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 26 Aug 2025 07:49:40 GMT</pubDate>
    <dc:creator>Suman8877</dc:creator>
    <dc:date>2025-08-26T07:49:40Z</dc:date>
    <item>
      <title>Finding Final amount Current Month ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Finding-Final-amount-Current-Month/m-p/4807765#M183888</link>
      <description>&lt;P&gt;Hello, everybody&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any dax command where I can see the total amount for the current month?.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 07:49:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Finding-Final-amount-Current-Month/m-p/4807765#M183888</guid>
      <dc:creator>Suman8877</dc:creator>
      <dc:date>2025-08-26T07:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: Finding Final amount Current Month ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Finding-Final-amount-Current-Month/m-p/4807780#M183889</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1339716" data-lia-user-login="Suman8877" class="lia-mention lia-mention-user"&gt;Suman8877&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Yes, you can calculate the total for the current month using a measure like this:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;CurrentMonthAmount =
CALCULATE(
  SUM('Sales'[Amount]),
   FILTER(
       ALL('Date'),
      MONTH('Date'[Date]) = MONTH(TODAY()) &amp;amp;&amp;amp;
      YEAR('Date'[Date]) = YEAR(TODAY())
   )
)&lt;/LI-CODE&gt;
&lt;UL&gt;
&lt;LI&gt;Replace 'Sales'[Amount] with your column name.&lt;/LI&gt;
&lt;LI&gt;This will return the total amount only for the current month based on today’s date.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 07:56:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Finding-Final-amount-Current-Month/m-p/4807780#M183889</guid>
      <dc:creator>rohit1991</dc:creator>
      <dc:date>2025-08-26T07:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: Finding Final amount Current Month ?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Finding-Final-amount-Current-Month/m-p/4807781#M183890</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;what you have in DAX is a set of funtions to get the end of month in terms of dates&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://dax.guide/eomonth/" target="_blank"&gt;https://dax.guide/eomonth/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://dax.guide/endofmonth/" target="_blank"&gt;https://dax.guide/endofmonth/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The last one can be used in a CALCULATE statement as filter as it returns a table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;example&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CALCULATE ( [Sales Amount], ENDOFMONTH ( Dates[Date] ) )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this helped, please consider giving kudos and mark as a solution&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="273" data-lia-user-login="me" class="lia-mention lia-mention-user"&gt;me&lt;/a&gt; in replies or I'll lose your thread&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Want to check your DAX skills? &lt;A href="https://www.linkedin.com/company/kubisco/" target="_blank"&gt;Answer my biweekly DAX challenges on the kubisco Linkedin page&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Consider voting &lt;A href="https://community.fabric.microsoft.com/t5/Fabric-Ideas/Power-BI-Filter-Pane-as-an-icon-on-the-right-side-bar-in-on/idi-p/4728588" target="_blank"&gt;this Power BI idea&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Francesco Bergamaschi&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;MBA, M.Eng, M.Econ, Professor of BI&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 07:56:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Finding-Final-amount-Current-Month/m-p/4807781#M183890</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2025-08-26T07:56:25Z</dc:date>
    </item>
  </channel>
</rss>

