Forum Discussion
julrua
5 years agoFrequent Visitor
Dynamic Title
Hello everyone, Sorry I am new to Power BI - it might be obvious. I want to create a dynamic title that display a text only if one option of my slicer is selected. For example, if Proj...
mahoneypat
5 years agoMicrosoft Employee
You should be able to just put a measure in a card with this expression.
Description = SELECTEDVALUE(Table[Description Column])
If you want to concatenate it with text you can too.
Description = "The description for this project is: " & SELECTEDVALUE(Table[Description Column])
Regards,
Pat