Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have measure that combines a grade and a number from two other measures like this
A
90
when I use it in the regular Card it shows the both the number and the grade as Callout values. but wen I switch the visual to the Card(new) it displays
A....
as the callout values, I tried playing around with the font size and visuals size but its not working. I really want to use the Card(new) visual as some of its features (reference labels > Details/image) are not in the regular card. would appreaciate any tips.
Solved! Go to Solution.
Hi Jason,
Are you using UNICHAR line break in your measure? New card visual doesn't understand new line value. You need to increase the width of the card visual to see complete values.
Thanks
Hi @Jason290 ,
Agree with Hariharan_R. Currently line break is not supported in the new card visual.
If you want this feature will be implemented in the future, you could submit an idea for it:
Welcome to Microsoft Fabric Ideas
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Jason,
Are you using UNICHAR line break in your measure? New card visual doesn't understand new line value. You need to increase the width of the card visual to see complete values.
Thanks
Yes, I am using UNICHAR(10) to make the number appear below the word. chaning the width/height does not fix
"
My_measure =
var total_sales = *do some calculations*
var target_sales = *do some calculations*
return
total_sales & UNICHAR(10) & target_sales
"
if I instead used double quotes like below it shows them side by side but I need the number to be below
My_measure =
var total_sales = *do some calculations*
var target_sales = *do some calculations*
return
total_sales & " " & target_salesAdvance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.