Forum Discussion
matalb
4 years agoNew Member
How to get a dynamic label using a language filter?
I have this table with graphics titles, cards and filters for each language (Spanish and Portuguese). I'm new to DAX how can I create a measure that dynamically changes the title of this...
- 4 years ago
Hey matalb,
You can create a Calculated Column using the SWITCH function:
Dynamic Title = SWITCH ( 'Graphics Table'[variable], "1st graph title", 'Graphics Table'[text] )Then click on your visual, go to Title text, and click the function key.
Find the new calculated column and click it.
Hope this helps.
Watsky
Solution Sage
4 years agoHey matalb,
You can create a Calculated Column using the SWITCH function:
Dynamic Title =
SWITCH (
'Graphics Table'[variable],
"1st graph title", 'Graphics Table'[text]
)
Then click on your visual, go to Title text, and click the function key.
Find the new calculated column and click it.
Hope this helps.