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,
Power BI has very powerful Time Intelligence capabilities.
However, they seem not to be applicable when using a direct query.
Am I missing something big?
What is the alternative to the Time Intelligence functions when using Direct Query?
Thank you
Tamir
Solved! Go to Solution.
Hi Tamir,
The time intelligence takes a toll when connecting to direct query.
If you are expecting the date hierarchy in specific , you would have to create it for yourself by making columns [year], [quarter],[month],[date] and then use them to create a hierarchy.
You can get the modelling and reporting limitaions for direct query connection in
https://docs.microsoft.com/en-us/power-bi/desktop-directquery-about
Regards,
Praisely
Hi Tamir,
Yes, in direct query mode, time intelligence function are not available, please refer to the documentation: https://docs.microsoft.com/en-us/sql/analysis-services/tabular-models/dax-formula-compatibility-in-d.... The alternative ways depend on your specific senario, so if you want to achieve some result using time intelligence, please share sample data and expected result.
Regards,
Jimmy Tao
Hey Tamir,
basically the build-in Time Intelligence functions are syntax sugar for a combination of other DAX functions.
Here you will find a lot of examples how to rewrite these build-in functions:
https://www.daxpatterns.com/time-patterns/
Regards,
Tom
From msft docs: No built-in date hierarchy: When importing data, every date/datetime column will also have a built-in date hierarchy available by default. For example, if importing a table of sales orders including a column OrderDate, then upon using OrderDate in a visual, it will be possible to choose the appropriate level (year, month, day) to use. This built-in date hierarchy isn't available when using DirectQuery. If there's a Date table available in the underlying source, as is common in many data warehouses, then the DAX Time Intelligence functions can be used as normal.
Hi there,
I was facing the same problem and I came up with the following code as a work around. These scripts calculate measures such as month over month (MoM) and year over year (YoY).
Last Years Amount
Amount_LY = CALCULATE( [AMOUNT],EXPENSES[DATE_YEAR] = VALUES(EXPENSES[DATE_YEAR])-1)
Last Months Amount
Amount_LM = IF( (VALUES(EXPENSES[DATE_MONTH])-1) =0, CALCULATE( [AMOUNT], EXPENSES[DATE_YEAR] = (VALUES(EXPENSES[DATE_YEAR])-1), EXPENSES[DATE_MONTH] = 12 ), CALCULATE( [AMOUNT], EXPENSES[DATE_YEAR] = (VALUES(EXPENSES[DATE_YEAR])-0), EXPENSES[DATE_MONTH] = (VALUES(EXPENSES[DATE_MONTH])-1) ) )
You can use these basic calculations to derive measures like growth rates and differences. As you can see in the 'Last Month Amount' code, you will have to get creative at times to replicate the time intelligence based calculations.
I hope this helps,
Eric
@Anonymous wrote:Hi,
Power BI has very powerful Time Intelligence capabilities.
However, they seem not to be applicable when using a direct query.
Am I missing something big?
What is the alternative to the Time Intelligence functions when using Direct Query?
Thank you
Tamir
Hey Tamir,
basically the build-in Time Intelligence functions are syntax sugar for a combination of other DAX functions.
Here you will find a lot of examples how to rewrite these build-in functions:
https://www.daxpatterns.com/time-patterns/
Regards,
Tom
Hi Tamir,
Yes, in direct query mode, time intelligence function are not available, please refer to the documentation: https://docs.microsoft.com/en-us/sql/analysis-services/tabular-models/dax-formula-compatibility-in-d.... The alternative ways depend on your specific senario, so if you want to achieve some result using time intelligence, please share sample data and expected result.
Regards,
Jimmy Tao
Hi Tamir,
The time intelligence takes a toll when connecting to direct query.
If you are expecting the date hierarchy in specific , you would have to create it for yourself by making columns [year], [quarter],[month],[date] and then use them to create a hierarchy.
You can get the modelling and reporting limitaions for direct query connection in
https://docs.microsoft.com/en-us/power-bi/desktop-directquery-about
Regards,
Praisely
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
165 | |
116 | |
63 | |
57 | |
50 |