Forum Discussion
Anonymous
9 years agoNot applicable
comulative flow chart
Hey everyone, I got a request to build "a cosmic ship" :) I need to show the amount of task through it's status during the period, but everyday it must include previuos tasks + new task. Wha...
Eric_Zhang
9 years agoMicrosoft Employee
Anonymous
Can you try to create a measure?
IssueKey cnt =
COUNTX (
FILTER ( yourTable, yourTable[WorkDate] <= MAX ( yourTable[WorkDate] ) ),
IssueKey
)
If this is not your case, please post some sample data.