Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have a report where a card visual displays a max value for a column in a table. I want to include on this card a selection from a slicer.
The slicer contains month names from a table. If July is selected I would like that month name to appear in the card along with the current Value being displayed.
Above the card has the max number of users, the slicer has a month selected (this example only has one month shown, but it can be populated with up to 12 months).
My preference would be to have the title of the card say "Concurrent users for month xxxxxxxx" where xxxxxxxx is the selected month in the slicer. I don't see a way to make the title use a concatenated text/value so perhaps using the multi-row Card, but I still am not sure how to include the selection from the slicer in the card.
This is likely simple, but I am very new to powerbi so hopefully someone can let me know how to best accomplish this.
Thank you
Solved! Go to Solution.
Under the Format pane, you can put a dynamic title in using this button:
You can select a text-value measure to use here, so you'll want to define one first. Something like this perhaps:
CardTitleMeasure = "Concurrent users for month " & SELECTEDVALUE ( DateTable[Month] )
Under the Format pane, you can put a dynamic title in using this button:
You can select a text-value measure to use here, so you'll want to define one first. Something like this perhaps:
CardTitleMeasure = "Concurrent users for month " & SELECTEDVALUE ( DateTable[Month] )
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.