Forum Discussion
Anonymous
3 years agoNot applicable
Using Fields Parameter to Create a Measure for Dynamic Title of Visual
Dear fellow users, I am using a field parameters measure to dynamically change the line chart visual based on different fields/indicators (which are create measures). In the field parameter Dax M...
- 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"
dnzdvd
1 year agoNew Member
Thank you for the head start. However, I found that this will always return the last value in the field parameter filter if none is selected. I added the fourth argument in the field parameter syntax and I modified the field selection values a bit using the following:
IF(
ISFILTERED(parametername[parameterCat]),
CONCATENATEX(DISTINCT(parametername[parameterCat]), parametername[parameterCat], ", "), "All")
This will list all values selected, and return ALL if none is selected.
This will list all values selected, and return ALL if none is selected.