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.")
amitchandak
6 years agoSuper User
Try like
Measure Header = IF(ISFILTERED(Grade[Student Name]),firstnonblank(Grade[Student Name],blank()),"Multiple Students Selected")
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution.
In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blogs -Decoding Direct Query - Time Intelligence, Winner Coloring on MAP, HR Analytics, Power BI Working with Non-Standard TimeAnd Comparing Data Across Date Ranges
Proud to be a Datanaut Connect on Linkedin