Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
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 up on my visual. Thanks in advance 🙂
Exclude future dates =
IF ( MAX ( 'Date'[Date] ) <= TODAY(), 1, 0 )
Solved! Go to Solution.
@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 )
@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 )
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.
| User | Count |
|---|---|
| 79 | |
| 48 | |
| 35 | |
| 31 | |
| 27 |