Join 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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
How do you get the date filter end date to default to the latest data - for example when I opened the below today it was defaulted to 1/29/24 but there is data in there until 3/11/24. I'd like for it to automatically show 3/11/2024 as last date without having to manually scroll the visual.
Solved! Go to Solution.
Hi @jcastr02
@Greg_Deckler Thanks for your sharing!
In response to your question, I offer some other thoughts for your consideration:
Here's some dummy data
"Date"
Create a new table that holds the maximum dates in the date table.
max_date = SUMMARIZE('Date', "max_date", MAX('Date'[Date]))
Manually create a relationship between two tables.
Creating a slicer with the max_date table.
You can also change the slicer to "Single select".
Here is the result.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @jcastr02
@Greg_Deckler Thanks for your sharing!
In response to your question, I offer some other thoughts for your consideration:
Here's some dummy data
"Date"
Create a new table that holds the maximum dates in the date table.
max_date = SUMMARIZE('Date', "max_date", MAX('Date'[Date]))
Manually create a relationship between two tables.
Creating a slicer with the max_date table.
You can also change the slicer to "Single select".
Here is the result.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@jcastr02 Switch it to be an after slicer instead of between?