Forum Discussion
Anonymous
6 years agoNot applicable
Display the current selection line-by-line inside a card
I wrote a measure to display the current selections( From various slicers ) in a card. I want the current selected values line byline. i.e; If I select "male" from "gender" slicer ,it must be displa...
sturlaws
Resident Rockstar
6 years agoHi Anonymous ,
you could try to use UNICHAR(10) where you want your line breaks, eg. "string1" & UNICHAR(10) & "string2"
Cheers,
Sturla
If this post helps, then please consider Accepting it as the solution. Kudos are nice too.
Anonymous
6 years agoNot applicable
HI Sturla,
I tried that method,but couldn't get the desired output as mentioned in the question.
Please suggest any other mothed if possible & Available.
Thanks for your efforts
Regards,
Vignesh
- sturlaws6 years ago
Resident Rockstar
It would be helpfull if you included a sample report with which demonstrates what's not working.
I got this code to work:
Measure = SELECTEDVALUE ( 'Table'[age] ) & UNICHAR ( 10 ) & SELECTEDVALUE ( 'Table'[Employment] ) & UNICHAR ( 10 ) & SELECTEDVALUE ( 'Table'[gender] )but I might have misunderstood what you are trying to do