Forum Discussion
Modified time period slicer
- Anonymous2 years ago
Hi kmilarov ,
What I mean by modifying the slicer is this: create a custom form to use as a slicer.
You can put the created metric result in filters, filtering for values of 1. visual will display the results that fulfill the condition.
Best Regards,
Adamk KongIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi kmilarov ,
If relative dates are not switched very often, try customizing the table of relative dates. Refer to the following:
result_ =
SWITCH (
SELECTEDVALUE ( Slicer[slicer] ),
"next 1 month",
IF ( MAX ( 'Date'[Date] ) < TODAY () + 30, 1, 0 ),
"next 1 week",
IF ( MAX ( 'Date'[Date] ) < TODAY () + 7, 1, 0 ),
"next 1 year",
IF ( MAX ( 'Date'[Date] ) < TODAY () + 365, 1, 0 )
)
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- kmilarov2 years agoHelper II
Thank you ! Please could you clarify where/ how exactly to revise the slicer ? Shall I create new Parameter -- slicer ? Where to put the fax code " results_ etc "?