Forum Discussion
anabianco09
Helper II
2 years agoCard filtering measure
Hi all, I am building a dashboard where I want to display a message (text) on a card when the user selects something from the filter set up.
It is a text column that I want to display on the card :
And when nothing is selected, it displays the first row:
how to solve this?
Hi anabianco09
You can use simple dax liketext = MAX('Table'[your column])pbix with example is attached
2 Replies
- Ritaf1983
Super User
Hi anabianco09
You can use simple dax liketext = MAX('Table'[your column])pbix with example is attached - Syk
Resident Rockstar
Try something like this!
selected text = SELECTEDVALUE(Table[ColumnName],MIN(Table[ColumnName]))