Forum Discussion

12-pune's avatar
12-pune
Frequent Visitor
4 years ago
Solved

Fetch dates from Another table if it exists between them

Hi all, URGENT!! Please help me on this issue I have 2 tables: Story data table and Iterations tables. Story table: ID Status Sprint BeginDate End Date 1 Closed AB   3/16/2022 22:...
  • Fowmy's avatar
    4 years ago

    12-pune 

    Add the following Calculated Column in the Story Table

    BeginDate = 
    VAR __EndDate = Story[End Date]
    RETURN
        MINX(
            FILTER(
                Iteration,
                __EndDate>= Iteration[beginDate] && __EndDate <= Iteration[endDate]
            ),
            Iteration[beginDate]
        )