The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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