Forum Discussion
Anonymous
7 years agoNot applicable
Dynamically change text box or card value
Hi Experts How would you dynamically change the value in a card or text box based on the election made in two slicers. 1. Slicer options are. Year either 2017, 2018 Dec 2. Slicer options are. A...
- 7 years ago
Hi Anonymous,
You could add below measure to card visual.
Measure = SELECTEDVALUE ( Table1[Year] ) & UNICHAR ( 10 ) & SELECTEDVALUE ( Table1[Category] )Best regards,Yuliana Gu
parry2k
Super User
7 years agoAnonymous not sure about the two lines of code but you can create measure to combine values from the slicers:
Selected Slicer Value = SELECTEDVALUE( Table1[Slicer1] ) & " " & SELECTEDVALUE( Table1[Slicer2] )
Anonymous
7 years agoNot applicable
How do you put a measure into a text box? I can only type in text.
parry2k wrote:Anonymousnot sure about the two lines of code but you can create measure to combine values from the slicers:
Selected Slicer Value = SELECTEDVALUE( Table1[Slicer1] ) & " " & SELECTEDVALUE( Table1[Slicer2] )