Forum Discussion
How to create a dynamic title based on slicer value selection ?
Hi ,
I am trying to desgin a Dynamic title for one of the reports . Please help me with below case.
I have 2 slicers like Support Organisation and Director . If I select some value in this 2 slicers I want a Dynamic title to be like :
[Support Organisation] + "Changes For" + [Director] . So i have written a measure like below . However, it is not working. Kindly help
Anonymous ,
Please modify the measure as below:
Group Title = IF ( OR ( ISFILTERED ( 'ALL Director'[Director] ), ISFILTERED ( 'ALL Support ORG'[Support_Organization] ) ), SELECTEDVALUE ( 'ALL Support ORG'[Support_Organization] ) & " Changes For " & SELECTEDVALUE ( 'ALL Director'[Director] ), "No Selection" )Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
1 Reply
- v-yuta-msft
Community Support
Anonymous ,
Please modify the measure as below:
Group Title = IF ( OR ( ISFILTERED ( 'ALL Director'[Director] ), ISFILTERED ( 'ALL Support ORG'[Support_Organization] ) ), SELECTEDVALUE ( 'ALL Support ORG'[Support_Organization] ) & " Changes For " & SELECTEDVALUE ( 'ALL Director'[Director] ), "No Selection" )Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.