Forum Discussion

mgeldert's avatar
mgeldert
Frequent Visitor
5 years ago
Solved

How to use Slicer selection on Card Visual title

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

 

  • 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] )

     

1 Reply

  • 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] )