Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
em_joyce
Advocate I
Advocate I

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 each subjects. 

 

So I'd like a header using card visual to display the unique student name, but says "multiple students selected" when more than one students are selected. I created a calculated measure as below: 

 

Measure Header = IF(ISFILTERED(Grade[Student Name]),Grade[Student Name],"Multiple Students Selected")
 
The part in red does not work, if I replace it with "" then it's ok... but I want to show the student selected!! How do I do that? Help!! 
1 ACCEPTED SOLUTION
bfernandez
Resolver II
Resolver II

Try using the SELECTEDVALUE DAX function.

 

It should look something like this:

Measure = SELECTEDVALUE([Student Name], "Multiple students selected.")

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super 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

bfernandez
Resolver II
Resolver II

Try using the SELECTEDVALUE DAX function.

 

It should look something like this:

Measure = SELECTEDVALUE([Student Name], "Multiple students selected.")

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.