Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
dmbd1904
Helper III
Helper III

Circular Dependency

Hi I'm really struggling with this one. Can any one help

 

dmbd1904_0-1638789105417.png

 

 

Standing Time = VAR Location = COR_DepthRelatedExploratoryInformation[LocationDetails]
VAR Startdate = COR_DepthRelatedExploratoryInformation[DateTimeStart]
VAR Enddate = COR_DepthRelatedExploratoryInformation[DateTimeEnd]
RETURN CALCULATE(SUM(COR_TimeRelatedRemarksLocation[Working Hour Duration]),ALL(COR_TimeRelatedRemarksLocation),COR_ProgressByTime[LocationDetails]=Location,COR_TimeRelatedRemarksLocation[DateTimeStart]>=Startdate,COR_TimeRelatedRemarksLocation[DateTimeEnd]<=Enddate)

 

 

 

 

Productive Duration = VAR TimeStart = COR_DepthRelatedExploratoryInformation[DateTimeStart]
VAR TimeEnd = COR_DepthRelatedExploratoryInformation[DateTimeEnd]
VAR Workhours =
SUMX(
    CALCULATETABLE(
        'Calendar',
        DATESBETWEEN('Calendar'[Date],TimeStart,TimeEnd),
        'Calendar'[Working Day] = 1
    ),
VAR CalStart = 'Calendar'[Date] + 'Calendar'[Start Time]
VAR CalEnd = 'Calendar'[Date] + 'Calendar'[End Time]
RETURN
MAX(MIN(CalEnd ,TimeEnd) - MAX(CalStart,TimeStart),0) * 24
)
VAR Location = COR_DepthRelatedExploratoryInformation[LocationDetails]
VAR Startdate = COR_DepthRelatedExploratoryInformation[DateTimeStart]
VAR Enddate = COR_DepthRelatedExploratoryInformation[DateTimeEnd]
VAR StandingTime = CALCULATE(SUM(COR_TimeRelatedRemarksLocation[Working Hour Duration]),ALL(COR_TimeRelatedRemarksLocation),COR_ProgressByTime[LocationDetails]=Location,COR_TimeRelatedRemarksLocation[DateTimeStart]>=Startdate,COR_TimeRelatedRemarksLocation[DateTimeEnd]<=Enddate)
VAR ProductiveTime = Workhours-StandingTime
Return ProductiveTime
7 REPLIES 7
dmbd1904
Helper III
Helper III

Hi @v-chenwuz-msft  unfortunately I am still getting the error as below

 

dmbd1904_0-1640097990096.png

 

Hi @dmbd1904 ,

 

Please share pbix file without sensitive data. it is hard to fix it without data.


Best Regards

Community Support Team _ chenwu zhu

 

Hi @v-chenwuz-msft the pbix file can be retrieved from here https://we.tl/t-5GlTum5eII

Hi @v-chenwuz-msft  just wondering if you managed to take a look. I attach another link to the file  https://we.tl/t-fl4FGJmi9G

v-chenwuz-msft
Community Support
Community Support

Hi @dmbd1904 ,

 

This is Circular Dependency error in DAX.

You should add allexcept() to CALCULATE() function.

You can try the following code:

Standing Time =
VAR Location = COR_DepthRelatedExploratoryInformation[LocationDetails]
VAR Startdate = COR_DepthRelatedExploratoryInformation[DateTimeStart]
VAR Enddate = COR_DepthRelatedExploratoryInformation[DateTimeEnd]
RETURN
    CALCULATE(
        SUM( COR_TimeRelatedRemarksLocation[Working Hour Duration] ),
        ALLEXCEPT( COR_TimeRelatedRemarksLocation, [primary key column] ),
        COR_ProgressByTime[LocationDetails] = Location,
        COR_TimeRelatedRemarksLocation[DateTimeStart] >= Startdate,
        COR_TimeRelatedRemarksLocation[DateTimeEnd] <= Enddate
    )

 

For more detail of Circular Dependency error in DAX, please refer this article.

https://www.sqlbi.com/articles/understanding-circular-dependencies/ 

 

Best Regards

Community Support Team _ chenwu zhu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

dmbd1904
Helper III
Helper III

Hi @amitchandak thanks for the reply, I tried ut got the following error

 

dmbd1904_0-1638790388564.png

 

amitchandak
Super User
Super User

@dmbd1904 , Try like. I am assuming you are creating a new column

 

Standing Time = VAR Location = COR_DepthRelatedExploratoryInformation[LocationDetails]
VAR Startdate = COR_DepthRelatedExploratoryInformation[DateTimeStart]
VAR Enddate = COR_DepthRelatedExploratoryInformation[DateTimeEnd]
RETURN CALCULATE(SUM(COR_TimeRelatedRemarksLocation[Working Hour Duration]),Filter(COR_TimeRelatedRemarksLocation ,COR_ProgressByTime[LocationDetails]=Location && COR_TimeRelatedRemarksLocation[DateTimeStart]>=Startdate && COR_TimeRelatedRemarksLocation[DateTimeEnd]<=Enddate) )

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.