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

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.

Reply
Anonymous
Not applicable

multi row card data labels issue (not working)

Format values in multi row card not working. When we try to change the Color or Text size or Font family we can't see any formating. I am using a DAX calculation in multi row card. PFA screenshot.

 

multi row card issue.PNG

 

Dax calculation used: 

Calc_KPI Dax  =
VAR selection =
SWITCH (
[Calc _ Filter Type],
1, " Last year",
2, " Last quarter",
3, " Last month"
)
RETURN
CONCATENATE (
IF(ISBLANK([Calc_Dax Pre count]),0, [Calc_Dax Pre count]),
selection
)
1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi @Anonymous 

I can reproduce your problem.

As a workaround, when there is only one column or one measure in Muti-row card , change the "Card title" formatting instead.

3.png

Best Regards

Maggie

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

5 REPLIES 5
andrewtuplin
Advocate II
Advocate II

The category labels only work for numeric values. 

 

For example, if I have some measure "Count Employees" with a multi-row card with Category Labels set to ON, it works fine and I get a result like: 

1,200

Employees 

 

However, if I wrap my "Count Employees" measure with a Format() function changing the result from a Numeric type to a string type the category label, although still turned on, no longer shows. I'll get a result like: 

1,200

 

I think this is a bug. The category label shouldn't care about the data type of the value displayed.

v-juanli-msft
Community Support
Community Support

Hi @Anonymous 

I can reproduce your problem.

As a workaround, when there is only one column or one measure in Muti-row card , change the "Card title" formatting instead.

3.png

Best Regards

Maggie

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Hi @v-juanli-msft,

 

I am having the same issue. The workaround does not help when you have multiple fields to display. I have a text field (a growth % with a UNICHAR() up or down arrow) that is always converted to the "Card Title" and you cannot show the category label. I have other numbers that need to be displayed in the same card so this workaround is not an option.

 

Thank you,

Scott

Anonymous
Not applicable

Hi Sukun,

 

Your Multi-Card screenshot is not visible at all. Please upload it for clear understanding.

 

Similarly, Multi-card visual should support formatting of your text, color, etc.

 

And in other hand, your DAX Measure seems like it retunr a scalar value. Then, what it the use in using multi-card over here?

 

Regards,

Pradeep

Anonymous
Not applicable

Hi Pradeep,

 

I have uploaded the screenshot. Also I'm using multirow because it can be left aligned where as card can be only center align.

 

Thanks,

Sukun jain

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