Forum Discussion
DAX PREVIOUSMONTH()
- 2 years ago
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!!
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!!
- Andy832 years agoFrequent Visitor
Thank you