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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Andy83
Frequent Visitor

DAX PREVIOUSMONTH()

Hi All, 

 

I have the following Query within Power Automate at the moment. I need the red parts below to be dynamic so it collects the previous months data. 

 

FILTER(
KEEPFILTERS(VALUES('Dates'[Date])),
AND('Dates'[Date] >= DATE(2024, 6, 18), 'Dates'[Date] < DATE(2024, 7, 18))
)

 

I thought something like this might work. I thought about maybe using the MONTH function someone and minus 1. Any help would be much appreciated. Thanks

 

FILTER(
KEEPFILTERS(VALUES('Dates'[Date])),
AND('Dates'[Date] >= DATE(PREVIOUSMONTH()), 'Dates'[Date] < DATE(TODAY()))
)

1 ACCEPTED SOLUTION
rajendraongole1
Super User
Super User

Hi @Andy83 - you can try the below measure for previous month's data without manually updating 

 

CALCULATE(
SUM('YourTable'[YourColumn]),
FILTER(
KEEPFILTERS(VALUES('Dates'[Date])),
'Dates'[Date] >= STARTOFMONTH(EOMONTH(TODAY(), -1)) &&
'Dates'[Date] < STARTOFMONTH(TODAY())
)
)

 

 

Hope it works for you.

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

2 REPLIES 2
rajendraongole1
Super User
Super User

Hi @Andy83 - you can try the below measure for previous month's data without manually updating 

 

CALCULATE(
SUM('YourTable'[YourColumn]),
FILTER(
KEEPFILTERS(VALUES('Dates'[Date])),
'Dates'[Date] >= STARTOFMONTH(EOMONTH(TODAY(), -1)) &&
'Dates'[Date] < STARTOFMONTH(TODAY())
)
)

 

 

Hope it works for you.

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Thank you

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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