Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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]))
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
101 | |
66 | |
48 | |
39 | |
32 |
User | Count |
---|---|
166 | |
112 | |
60 | |
56 | |
37 |