Forum Discussion
Timebrush default time selection
- 9 years ago
When you add visual level filter, the context is limited to two weeks range only so that you can't select more that two weeks in slicer. However, it's not supported to set default selection for any type of slicer visual currently. For your requirement, you can create a calculated column column to tag if the date is within last 2 weeks. Then put the tag column into a slicer for selection.
IsWithinTwoWeeks = IF ( Table[Date] >= ( TODAY () - 14 ), 1, 0 )
Regards,
When you add visual level filter, the context is limited to two weeks range only so that you can't select more that two weeks in slicer. However, it's not supported to set default selection for any type of slicer visual currently. For your requirement, you can create a calculated column column to tag if the date is within last 2 weeks. Then put the tag column into a slicer for selection.
IsWithinTwoWeeks = IF ( Table[Date] >= ( TODAY () - 14 ), 1, 0 )
Regards,