Forum Discussion
Circular dependency Unknown Table
- 1 year ago
Hey guys,
I have resolved this issue by putting relationship of HolidayTable and DateTable to Inactive and used LookupValue function to fetch data from HolidayTable in DateTable.
"IsHoliday", IF(NOT(ISBLANK(LOOKUPVALUE('Holiday Table'[Date], 'Holiday Table'[Date], [Date]))), "True", "False")
But I'm not receiving any error in Power BI Desktop only in Power BI service. Why is that?
Hi lovishsood1 -Check if you're using incremental refresh in the Power BI Service. If so, try disabling it temporarily to see if the issue persists with a full refresh.Revisit the steps in Power Query that involve the DateTable and ensure there’s no inadvertent circular logic being introduced. check if there is any complex DAX measures, especially time-intelligence or cumulative calculations, as they might be evaluated differently in the service.
Simplify the Model: Try isolating different parts of the model or simplifying it temporarily to identify the source of the issue. For example, disconnect certain relationships and see if the problem persists in Power BI Service.