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
MissBI_21
Helper II
Helper II

How to add a title to a row in a matrix

I have a calculated column (Day Rate) and I'm trying to show that against the month in a matrix.

 

MissBI_21_0-1652278597400.png

I want to add a title to the row on the left to show end users that this is the day rate. Is that possible?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @MissBI_21 ,

I created some data:

vyangliumsft_0-1652691471599.png

Here are the steps you can follow:

1. Create calculated table.

Table 2 =
var _summtable=
SUMMARIZE('Mian Table',
'Mian Table'[Date],
"Group","Day Rate",
"Value",
DIVIDE(
    SUMX(ALL('Mian Table'),[Amount]),
SUMX(FILTER(ALL('Mian Table'),MONTH('Mian Table'[Date])=MONTH(EARLIER('Mian Table'[Date]))&&'Mian Table'[Group]=[Group]),[Amount])
))
return
UNION(
    'Mian Table',_summtable)

2. Result:

vyangliumsft_1-1652691471603.png

Best Regards,

Liu Yang

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

3 REPLIES 3
Anonymous
Not applicable

Hi  @MissBI_21 ,

I created some data:

vyangliumsft_0-1652691471599.png

Here are the steps you can follow:

1. Create calculated table.

Table 2 =
var _summtable=
SUMMARIZE('Mian Table',
'Mian Table'[Date],
"Group","Day Rate",
"Value",
DIVIDE(
    SUMX(ALL('Mian Table'),[Amount]),
SUMX(FILTER(ALL('Mian Table'),MONTH('Mian Table'[Date])=MONTH(EARLIER('Mian Table'[Date]))&&'Mian Table'[Group]=[Group]),[Amount])
))
return
UNION(
    'Mian Table',_summtable)

2. Result:

vyangliumsft_1-1652691471603.png

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

mahenkj2
Solution Sage
Solution Sage

Else can create a text box near the row, or even create tooltip page which can appear just by hovering over the visual. 

amitchandak
Super User
Super User

@MissBI_21 , You can use Matrix Title under property, if that can serve purpose

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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