Forum Discussion
Slicer to 2 Date Ranges
- Anonymous2 years ago
Hi Anonymous
Unfortunately that power bi doesn't support this feature currently.
But maybe this can be an alternative workaround:
First of all, I create a set of sample:
Then add a calculate column:
Column = IF ( 'Table'[date] = MIN ( 'Table'[date] ), "the earliest date", FORMAT ( 'Table'[date], "yyyy-mm-dd" ) )The result is as follow:
Best Regards
Zhengdong Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous
Unfortunately that power bi doesn't support this feature currently.
But maybe this can be an alternative workaround:
First of all, I create a set of sample:
Then add a calculate column:
Column =
IF (
'Table'[date] = MIN ( 'Table'[date] ),
"the earliest date",
FORMAT ( 'Table'[date], "yyyy-mm-dd" )
)
The result is as follow:
Best Regards
Zhengdong Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you Anonymous!
Are there any other solutions besides this one that can separate Earliest date and also have a slicer inclusive of earliest date and all dates?
In addition to that, is it possible to add the earliest date to the "Earliest Date" text you have in your solution above^? Can I also make it so the earliest date shows up as the first filter selection option too?