Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Date Difference with Filters

Project No. Tasks in the Projects Start Date End Date AB10001 XXYYZZ12 8/24/2022 9/5/2022 AB10001 XXYYZZ13 8/25/2022 9/6/2022 AB10001 XXYYZZ14 8/...
  • BA_Pete's avatar
    3 years ago

    Hi Anonymous ,

     

    You just need one measure for all of your requirements:

    _projectLeadTime = 
    AVERAGEX(
        SUMMARIZE(
            yourTable,
            yourTable[Project No.],
            "minStart", MIN(yourTable[Start Date]),
            "maxEnd", MAX(yourTable[End Date])
        ),
        DATEDIFF([minStart], [maxEnd], DAY)
    )

     

    Here's the output when applied against different levels of dimensions:

     

    Pete