Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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('Month Year'[Month Year], TRUE) &" ","Plan Contribution")When i use it in card it shows as below image
Well i would like to show the month-year in new line, i.e below the Plan Contribution.
Plan Contribution
Apr-17
Any help.
Mohan V
Solved! Go to Solution.
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
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?!
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
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 103 | |
| 80 | |
| 63 | |
| 50 | |
| 45 |