Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Hello
I am using a matrix table and want to know if there is a way to rename the row headers?
Instead of 1, I want to show Ship and instead of 3, I want to show Return.
Thanks
Solved! Go to Solution.
The screenshot you provided seems to be column names, not row names .
(1)If you want to change the column name ,you can rename the field directly in Fields .
(2)If you want to change row names ,you can create a column to replace the original value in [Transaction Type] and then add the column in Rows in visual.
Column = SWITCH(TRUE(),Table[Transaction Type]=1,”Ship”, Table[Transaction Type]=3,”Return")
Best Regards
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The screenshot you provided seems to be column names, not row names .
(1)If you want to change the column name ,you can rename the field directly in Fields .
(2)If you want to change row names ,you can create a column to replace the original value in [Transaction Type] and then add the column in Rows in visual.
Column = SWITCH(TRUE(),Table[Transaction Type]=1,”Ship”, Table[Transaction Type]=3,”Return")
Best Regards
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
you can create a column with below condition and use it as row in your matrix
column = if(table[shiporreturn] = 1,"Ship",if(table[shiporreturn] = 3,"Return"))
Thanks
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 20 | |
| 18 | |
| 14 |
| User | Count |
|---|---|
| 58 | |
| 53 | |
| 42 | |
| 30 | |
| 24 |