Forum Discussion
Anonymous
5 years agoNot applicable
How caclculate TouchTime for Azure DevOps
Hello i want to calc Touch Time (sum working time by closed items per period in certain State). In my data set i have: Work Item Id - item State Time in Days - time in certain State State - St...
v-lionel-msft
5 years agoCommunity Support
Hi Anonymous ,
Like this? If it's incorrect, please show me the sample data and expected output table like me.
Measure =
CALCULATE(
SUM(Sheet2[Working time]),
FILTER(
Sheet2,
[State] = "Closed" && [Weeknum] = MAX([Weeknum])
)
)
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Anonymous5 years agoNot applicable
isn't correct, i said closed items located in another table, need condtion for comapare source table (Id) = table with closed (Id)