Forum Discussion
ronaldbalza2023
Continued Contributor
4 years agoExclude future dates filter
Hi everyone, so I have this measure that excludes future dates in my filter visual. However, it doesn't include the dates that actually had data. Say I have data from April 1 to 6 and it doesn't show...
- 4 years ago
ronaldbalza2023 , Try with min, as in case of date table, max can month end date
Exclude future dates =
IF ( Min('Date'[Date] ) <= TODAY(), 1, 0 )or use date from fact /data table
IF ( Max('Table'[Date] ) <= TODAY(), 1, 0 )
amitchandak
Super User
4 years agoronaldbalza2023 , Try with min, as in case of date table, max can month end date
Exclude future dates =
IF ( Min('Date'[Date] ) <= TODAY(), 1, 0 )
or use date from fact /data table
IF ( Max('Table'[Date] ) <= TODAY(), 1, 0 )