Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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()))
)
Solved! Go to Solution.
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!!
Proud to be a 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!!
Proud to be a Super User! | |
Thank you
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.