Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Jason290
Frequent Visitor

Card(new) visual not displaying combined measure

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.

1 ACCEPTED SOLUTION
Hariharan_R
Solution Sage
Solution Sage

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.

 

Hariharan_R_0-1734450709254.png

Thanks

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

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.

 

Hariharan_R
Solution Sage
Solution Sage

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.

 

Hariharan_R_0-1734450709254.png

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_sales



Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors