Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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?
Solved! Go to Solution.
Hi @anabianco09
You can use simple dax like
Try something like this!
selected text = SELECTEDVALUE(Table[ColumnName],MIN(Table[ColumnName]))
Hi @anabianco09
You can use simple dax like