Forum Discussion
Anonymous
4 years agoNot applicable
Cumulative Values Going beyond Current Date
Hello, Looking for some help on the following Dax Formula Im looking for the "Cumulative Actuals to date" values to stop at 30-April-22 and not repeat to the end of the calander The D...
- 4 years ago
Add a new column to your date table like
Current month or before = 'Date'[Date] <= EOMONTH(TODAY(),0)then wrap the code for your measure inside
IF( SELECTEDVALUE( 'Date'[Current month or before], existing code here )that will return blank for future dates
johnt75
Super User
4 years agoAdd a new column to your date table like
Current month or before = 'Date'[Date] <= EOMONTH(TODAY(),0)then wrap the code for your measure inside
IF( SELECTEDVALUE( 'Date'[Current month or before], existing code here )that will return blank for future dates