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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
v-yangliu-msft
Community Support
Community Support

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
v-yangliu-msft
Community Support
Community Support

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
Impactful Individual
Impactful Individual

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.