Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello
I want to enable users to chose their own date filters on a page but I also want to always exclude today's date data from a particular visual on the page.
Is it possible to specify a relative date filter on the visual so that it will display all data apart from today's and then enable users apply page filters on top to further filter the data on the visual and the page according to their own date range?
Thanks!
Solved! Go to Solution.
Hi @Anonymous ,
I created the data:
Here are the steps you can follow:
1. Create measure.
flag =
IF(MAX('Table'[date])=TODAY(),0,1)
2. Place [flag] in Filter, set is=1, apply filter.
3. Use [date] as a slicer
4. Even if the slicer selects the date, only all data except today will be displayed in the visual object
5. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
I created the data:
Here are the steps you can follow:
1. Create measure.
flag =
IF(MAX('Table'[date])=TODAY(),0,1)
2. Place [flag] in Filter, set is=1, apply filter.
3. Use [date] as a slicer
4. Even if the slicer selects the date, only all data except today will be displayed in the visual object
5. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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.