Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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.
User | Count |
---|---|
101 | |
69 | |
58 | |
47 | |
47 |