Forum Discussion
Dynamic Filter with Year and Qtr (SelectedValue)
- 4 years ago
Hi baneworth ,
According to your description, here's my solution. Create a measure.
Title = IF ( COUNTROWS ( ALLSELECTED ( 'Calendar'[Qtr] ) ) = 1, CONVERT ( SELECTEDVALUE ( 'Calendar'[Qtr] ), STRING ), CONVERT ( SELECTEDVALUE ( 'Calendar'[Year] ), STRING ) )Turn on the card visual title and click the fx button.
Select the measure in the dialoge.
Get the result.
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyjIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi baneworth ,
According to your description, here's my solution. Create a measure.
Title =
IF (
COUNTROWS ( ALLSELECTED ( 'Calendar'[Qtr] ) ) = 1,
CONVERT ( SELECTEDVALUE ( 'Calendar'[Qtr] ), STRING ),
CONVERT ( SELECTEDVALUE ( 'Calendar'[Year] ), STRING )
)
Turn on the card visual title and click the fx button.
Select the measure in the dialoge.
Get the result.
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- baneworth4 years ago
Helper III
works like a charm!!
Thank you very much