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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
WojnarBSF
Frequent Visitor

Rename Hierarchy level in Matrix visual

Hello,

 

I have a simple matrix and I would like to rename one of the date hierarchy levels: QTR 1 to Q1, etc. Is it possible?

image.png

 

 

image.png

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@WojnarBSF , You can not rename. You have to create you own custom date table and columns(and Hierarchy), of needed

Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

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

View solution in original post

Thank you very much for this advice. I've just created a custom date table that fulfills my requirements.

WojnarBSF_0-1630062658760.png

 

DAX:

 

Date = ADDCOLUMNS (
CALENDAR (DATE(2019,1,1), DATE(2025,12,31)),
"DateAsInteger", FORMAT ( [Date], "YYYYMMDD" ),
"Year", YEAR ( [Date] ),
"Qtr", "Q"&QUARTER([Date]))

 

 

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@WojnarBSF , You can not rename. You have to create you own custom date table and columns(and Hierarchy), of needed

Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

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

Thank you very much for this advice. I've just created a custom date table that fulfills my requirements.

WojnarBSF_0-1630062658760.png

 

DAX:

 

Date = ADDCOLUMNS (
CALENDAR (DATE(2019,1,1), DATE(2025,12,31)),
"DateAsInteger", FORMAT ( [Date], "YYYYMMDD" ),
"Year", YEAR ( [Date] ),
"Qtr", "Q"&QUARTER([Date]))

 

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors