Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Suman8877
Advocate II
Advocate II

Finding Final amount Current Month ?

Hello, everybody 

Is there any dax command where I can see the total amount for the current month?. 

Many thanks,

 

2 ACCEPTED SOLUTIONS
rohit1991
Super User
Super User

Hi @Suman8877 

Yes, you can calculate the total for the current month using a measure like this:

CurrentMonthAmount =
CALCULATE(
  SUM('Sales'[Amount]),
   FILTER(
       ALL('Date'),
      MONTH('Date'[Date]) = MONTH(TODAY()) &&
      YEAR('Date'[Date]) = YEAR(TODAY())
   )
)
  • Replace 'Sales'[Amount] with your column name.
  • This will return the total amount only for the current month based on today’s date.


Did it work? ✔ Give a Kudo • Mark as Solution – help others too!

View solution in original post

FBergamaschi
Solution Sage
Solution Sage

Hi,

what you have in DAX is a set of funtions to get the end of month in terms of dates

 

https://dax.guide/eomonth/

 

https://dax.guide/endofmonth/

 

The last one can be used in a CALCULATE statement as filter as it returns a table

 

example

 

CALCULATE ( [Sales Amount], ENDOFMONTH ( Dates[Date] ) )

 

If this helped, please consider giving kudos and mark as a solution

@me in replies or I'll lose your thread

Want to check your DAX skills? Answer my biweekly DAX challenges on the kubisco Linkedin page

Consider voting this Power BI idea

Francesco Bergamaschi

MBA, M.Eng, M.Econ, Professor of BI

View solution in original post

2 REPLIES 2
FBergamaschi
Solution Sage
Solution Sage

Hi,

what you have in DAX is a set of funtions to get the end of month in terms of dates

 

https://dax.guide/eomonth/

 

https://dax.guide/endofmonth/

 

The last one can be used in a CALCULATE statement as filter as it returns a table

 

example

 

CALCULATE ( [Sales Amount], ENDOFMONTH ( Dates[Date] ) )

 

If this helped, please consider giving kudos and mark as a solution

@me in replies or I'll lose your thread

Want to check your DAX skills? Answer my biweekly DAX challenges on the kubisco Linkedin page

Consider voting this Power BI idea

Francesco Bergamaschi

MBA, M.Eng, M.Econ, Professor of BI

rohit1991
Super User
Super User

Hi @Suman8877 

Yes, you can calculate the total for the current month using a measure like this:

CurrentMonthAmount =
CALCULATE(
  SUM('Sales'[Amount]),
   FILTER(
       ALL('Date'),
      MONTH('Date'[Date]) = MONTH(TODAY()) &&
      YEAR('Date'[Date]) = YEAR(TODAY())
   )
)
  • Replace 'Sales'[Amount] with your column name.
  • This will return the total amount only for the current month based on today’s date.


Did it work? ✔ Give a Kudo • Mark as Solution – help others too!

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.