Forum Discussion
Column Name in Chart Title
- Anonymous5 years ago
Hi Krzysztof_Hyla,
It sounds like you want to achieve fully dynamic measure calculations based on selection.
If that is the case, I'd like to suggest you take a look at coalition groups and SELECTEDMEASURENAME, SELECTEDMEASURE functions.Regards,
Xiaoxin Sheng
You could try using the function button in the Title setting of the chart as below and then use the same measure in in a) you have mentioned above to create a title that varies dynamically.
ChartTitle = SELECTEDVALUE('Warranty Measures'[Measure]) & "by Model #"
If this helps solves your issue, please mark my reply as a solution
Regards,
Veena Shenolikar
- Krzysztof_Hyla5 years agoHelper II
Yes, but the thing is I don't want to hard-code "by Model #" in the formula.
I would like for the let's call it [MEASURE_B] to take value from the name of the column "Model"
So that it will change dynamically when I apply this title formula for another chart.
ChartTitle = SELECTEDVALUE('Warranty Measures'[Measure]) & "by " & [MEASURE_B]"