Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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?
Solved! Go to Solution.
@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.
Thank you very much for this advice. I've just created a custom date table that fulfills my requirements.
DAX:
Date = ADDCOLUMNS (
CALENDAR (DATE(2019,1,1), DATE(2025,12,31)),
"DateAsInteger", FORMAT ( [Date], "YYYYMMDD" ),
"Year", YEAR ( [Date] ),
"Qtr", "Q"&QUARTER([Date]))
@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.
Thank you very much for this advice. I've just created a custom date table that fulfills my requirements.
DAX:
Date = ADDCOLUMNS (
CALENDAR (DATE(2019,1,1), DATE(2025,12,31)),
"DateAsInteger", FORMAT ( [Date], "YYYYMMDD" ),
"Year", YEAR ( [Date] ),
"Qtr", "Q"&QUARTER([Date]))
User | Count |
---|---|
121 | |
72 | |
71 | |
57 | |
50 |
User | Count |
---|---|
167 | |
83 | |
68 | |
65 | |
55 |