Forum Discussion
Anonymous
9 years agoNot applicable
Dynamic Titles in multiple lines
Hello All, I have written a measure for creation of dynamic title as below. Title by month For Plan Contri = IF(
ISCROSSFILTERED('Month Year'[LastMonth]),
"Plan Contribution "& FIRSTNONBLANK(...
- 9 years ago
Hi Anonymous,
Currently, there seems no possible way to display a carriage return in a Card visual.
However, as a workaround, you could turn on the "word wrap" function under the Card format tab. Then, decrease the width of card visual. The month-year part will be displayed on next line automatically.
Best regards,
Yuliana Gu
Anonymous
7 years agoNot applicable
You can try using a Unicharacter.
If you put off Word Wrap and you conditional format your title with the following measure it will work:
Title by month For Plan Contri = IF(
ISCROSSFILTERED('Month Year'[LastMonth]),
"Plan Contribution " & UNICHAR(10) & FIRSTNONBLANK('Month Year'[Month Year], TRUE) &" ","Plan Contribution")The UNICHAR(10) stands for an "Enter" .
Let me know if this worked for you?!