March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi
Does anyone know if its possible to create a Months Between Slicer. e.g Jan-2022 to Feb-2022 . The relative date option is not good enough as you cannot select different months, just current minus x no of months.
Timeline slicer on app store is along right lines but is massive and takes up to much space.
thanks
Solved! Go to Solution.
Hi @zausten ,
If there is only one date table, then I think you have to use the multi-select feature of the slicer.
If you are willing to try two separate date tables, then you need to use the measure to filter the data.
Measure =
COUNTROWS (
FILTER (
'Table',
'Table'[Date] >= MIN ( Dates[Date] )
&& 'Table'[Date] <= MAX ( 'Dates 2'[Date] )
)
)
Best Regards,
Winniz
Hi @zausten ,
If there is only one date table, then I think you have to use the multi-select feature of the slicer.
If you are willing to try two separate date tables, then you need to use the measure to filter the data.
Measure =
COUNTROWS (
FILTER (
'Table',
'Table'[Date] >= MIN ( Dates[Date] )
&& 'Table'[Date] <= MAX ( 'Dates 2'[Date] )
)
)
Best Regards,
Winniz
You can use two disconnected tables to feed individual slicers, and then use a measure as a page filter to enact the month range.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
168 | |
116 | |
63 | |
57 | |
50 |