March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi folks, I am now not able to have the DATE HIERARCHY feature enabled (I never had this issue before Dec 2019 release).
I have tried a couple of solutions and none of them worked:
Created a calendar table using CALENDAR function - failed
Mark data table as date table - failed
Mark calendar table as date table - failed
Go to File > Options & Settings > Options > Preview features - no such feature is there that enables date hierarchy
I do not want to create my own hierarchy by using year / month / date because I feel that is not doing justice to whatever feature was previously there. Can someone please guide me?
Solved! Go to Solution.
After discussing with @v-lili6-msft , I noticed the reason why my date hierarchy is missing because I have disabled TIME INTELLIGENCE under CURRENT FILE > DATA LOAD. This issue is now resolved.
Hi @Alex_Ooi ,
Please refer https://community.powerbi.com/t5/Desktop/date-hierarchy-missing/m-p/887555.
No hierarchy will be created
Otherwise, please try update Power BI Desktop to latest version and see if the issue still exists.
Best Regards,
Jay
Community Support Team _ Jay Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @v-jayw-msft thank you for the response. I have read that article, and it didn't work too. In fact, I created a connection from date table to the data table, and I used the [Date] field from date table (not data table). This too, failed to work.
Also, can I know how would I know which is the latest Power BI Desktop version? I am currently running on
Version: 2.76.5678.782 64-bit (December, 2019)
The update notification on my machine is greyed out - I assume the app would have automatic update, which means I am already having an up-to-date version as we speak? Please advise.
Hi @Alex_Ooi ,
I have the same Power BI Desktop version with you and my date hierarchy feature is working fine.
If you are using one to many relationship, the "many" side date hierarchy won't work.
Try open a new pbix and create a single date table and check if you can use date hierarchy, if not, you might need to reinstall your Power BI Desktop.
Best Regards,
Jay
Community Support Team _ Jay Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
After discussing with @v-lili6-msft , I noticed the reason why my date hierarchy is missing because I have disabled TIME INTELLIGENCE under CURRENT FILE > DATA LOAD. This issue is now resolved.
@v-jayw-msft I made a mistake by clicking on "Mark as solution" earlier. I have done as per your advise
Below is the DAX code I used to create date table. Can you share with me how did you create a date table?
Calendar =
VAR BaseCalendar =
CALENDAR (DATE (2005, 1, 1), DATE (2015, 12, 31))
RETURN
GENERATE (
BaseCalendar,
VAR BaseDate = [Date]
VAR YearDate = YEAR ( BaseDate )
VAR MonthNumber = MONTH ( BaseDate )
VAR MonthName = FORMAT ( BaseDate, "mmmm" )
VAR YearMonthName = FORMAT ( BaseDate, "mmm yy" )
VAR YearMonthNumber = YearDate * 12 + MonthNumber - 1
VAR WeekNumber = WEEKNUM( [Date], 2)
RETURN ROW (
"Year", YearDate,
"Month Number", MonthNumber,
"Weeknum", WeekNumber,
"Month", MonthName,
"Year Month Number", YearMonthNumber,
"Year Month", YearMonthName
)
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
134 | |
91 | |
90 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
70 | |
68 |