Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello everybody,
I would like to know if a query with a join like this will work with the incremental load in PowerBI:
SELECT
[TransactionDateDimCalendarId],
b.[Date],
a.LastUpdate ,
*
FROM [CT dwh 03 Intelligence].[sales].[tFactOrder] as a
join [CT dwh 03 Intelligence].[dim].[tDimCalendar] as b
on a.TransactionDateDimCalendarId = b.DimCalendarId
Then I would filter date for current year and LastUpdate for the incremental load.
Will this work?
Thanks
mikro87
Solved! Go to Solution.
Yes, as long as RangeStart and RangeEnd are part of the query conditions.
Yes, as long as RangeStart and RangeEnd are part of the query conditions.