Forum Discussion
Using Fields Parameter to Create a Measure for Dynamic Title of Visual
- Anonymous3 years ago
amitchandak Thanks for your reply and your helpful blog.
I revised the dynamic title measure to use Max function with the field parameter. Now the title works fine.
Indicator Parameter TitleOnly = MAX('Parameter Indicators'[Parameter Indicators])& " across Time"
Anonymous , I think switch topn blog can help you
Switch TOPN with Field Parameters: https://amitchandak.medium.com/switch-topn-with-field-parameters-299a0ae3725f
Field Parameters- Conditional Formatting
: https://amitchandak.medium.com/field-parameters-conditional-formatting-517aacc23fdf
amitchandak Thanks for your reply and your helpful blog.
I revised the dynamic title measure to use Max function with the field parameter. Now the title works fine.
- kleigh1 year agoResponsive Resident
This was helpful. Although in most cases I will have a single parameter value selected, it is possible more than one is selected. So I came up with an addition that can work with that case.
if(DISTINCTCOUNT('Analyse By 2'[Analyse By 2 Fields]) = 1, MAX('Analyse By 2'[Analyse By 2]), CONCATENATEX('Analyse By 2', 'Analyse By 2'[Analyse By 2], ", "))It would probably work just using the CONCATENATEX expression, but the whole pattern allows for varying the single and multiple cases further.
- Anonymous1 year agoNot applicable
Thanks for the response. This is even better.