Forum Discussion
Julia_Mav
Helper II
3 years agoStatement for current YEAR and MONTH
Hello,
I'm using this DAX:
CurrentMonthSales = CALCULATE(SUM('SALES'[Europe]),PARALLELPERIOD('SALES'[Date],0,MONTH))
How can I modify the DAX statement to have data for the current month and YEAR (2023)?
Thanks in advance!
Julia_Mav , Create a measure like
This year Today =
var _min = eomonth(today(),-1*month(today()))+1
var _max = eomonth(_min,12 ,-1*month(today()) )
return
CALCULATE([Net], FILTER('Date','Date'[Date] >=_min && 'Date'[Date] <= _max))
2 Replies
- amitchandak
Super User
Julia_Mav , Create a measure like
This year Today =
var _min = eomonth(today(),-1*month(today()))+1
var _max = eomonth(_min,12 ,-1*month(today()) )
return
CALCULATE([Net], FILTER('Date','Date'[Date] >=_min && 'Date'[Date] <= _max)) - Julia_Mav
Helper II
Thank you amitchandak !