Forum Discussion
Anonymous
6 years agoNot applicable
Display Text from Column in Measure?
Hi there! So I'm working on this report that can either select one or multiple options on the name filter to display results. The data include a column of student names and their final grades on...
- 6 years ago
Try using the SELECTEDVALUE DAX function.
It should look something like this:
Measure = SELECTEDVALUE([Student Name], "Multiple students selected.")
bfernandez
6 years agoResolver II
Try using the SELECTEDVALUE DAX function.
It should look something like this:
Measure = SELECTEDVALUE([Student Name], "Multiple students selected.")