Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi,
I have a date slicer using Create Date from my JG Forecast Complete table and I am needing it to default to the Max Create Date.
So like today I go to my report and the selected date is 02/20/2024 I need it to be the max create date which is 02/25/2024.
Is there a way to do this? Thanks so much in advance!
Solved! Go to Solution.
Please create a measure MaxDate = Max(Table[Date])
Please use Custom free visual PreSelected Slicer
Create a calculated Table
_PreselectedSlicer = DATATABLE(
"IsDirtySlicer1", BOOLEAN, "IsDirtySlicer2", BOOLEAN,
{
{FALSE(), FALSE()},
{FALSE(), TRUE()},
{TRUE(), FALSE()},
{TRUE(), TRUE()}
}
)
Now create the PreSelected slicer visual
Let me know if that works for you
If your requirement is solved, please mark THIS ANSWER as SOLUTION ✔️ and help other users find the solution quickly. Please hit the Thumbs Up 👍 button if this comment helps you.
Thanks
Pijush
Linkedin
Proud to be a Super User! | |
Please create a measure MaxDate = Max(Table[Date])
Please use Custom free visual PreSelected Slicer
Create a calculated Table
_PreselectedSlicer = DATATABLE(
"IsDirtySlicer1", BOOLEAN, "IsDirtySlicer2", BOOLEAN,
{
{FALSE(), FALSE()},
{FALSE(), TRUE()},
{TRUE(), FALSE()},
{TRUE(), TRUE()}
}
)
Now create the PreSelected slicer visual
Let me know if that works for you
If your requirement is solved, please mark THIS ANSWER as SOLUTION ✔️ and help other users find the solution quickly. Please hit the Thumbs Up 👍 button if this comment helps you.
Thanks
Pijush
Linkedin
Proud to be a Super User! | |
You could add a calculated column that is that max date in your date colunn and make that the value of your slicer.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
87 | |
85 | |
85 | |
67 | |
49 |
User | Count |
---|---|
132 | |
113 | |
100 | |
68 | |
67 |