Forum Discussion
Anonymous
5 years agoNot applicable
Dynamic title to display multiple selected
I know this has already been covered, and probably asked by me before, but I am finding multiple and confusing solutions which i'm not sure are what I need. I have a date slicer holding month and y...
- 5 years ago
Hi, Anonymous
Could you tell me whether your problem have been solved?
You can also try measure as below to create dynamic title:
Selected Month = VAR selectedmonth = VALUES ( 'financials'[Date].[Month] ) RETURN "Sales by Month: " & IF ( COUNTROWS ( selectedmonth ) = COUNTROWS ( ALL ( 'financials'[Date].[Month] ) ), "All", CONCATENATEX ( VALUES ( 'financials'[Date].[Month] ), 'financials'[Date].[Month], "," ) )Please check my sample pbix file for more details.
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-easonf-msft
5 years agoCommunity Support
Hi, Anonymous
Could you tell me whether your problem have been solved?
You can also try measure as below to create dynamic title:
Selected Month =
VAR selectedmonth =
VALUES ( 'financials'[Date].[Month] )
RETURN
"Sales by Month: "
& IF (
COUNTROWS ( selectedmonth ) = COUNTROWS ( ALL ( 'financials'[Date].[Month] ) ),
"All",
CONCATENATEX ( VALUES ( 'financials'[Date].[Month] ), 'financials'[Date].[Month], "," )
)
Please check my sample pbix file for more details.
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Fusilier21 year agoHelper V
This worked for me!