Forum Discussion

svaranas's avatar
svaranas
Frequent Visitor
4 years ago
Solved

Creating a Report to Count Tasks using lastest Status

Hey Team,   The Following is my data, and what i want to achieve, I have tried to extract max date time within each date, and got the status message but cannot do, i tried to extarct to a Createtab...
  • svaranas's avatar
    svaranas
    4 years ago

    This is teh first outcome

    thanks 

  • lbendlin's avatar
    lbendlin
    4 years ago

    Don't forget that the solution is presented as a calculated column. Therefore you can easily add a measure that does this computation.  (If it had been implemented as a measure it would have been much (much) more complex.)

     

    Yield = divide(sumx(Filter('Table','Table'[status_name] in {"Done","Queue"}),'Table'[Ct]),sumx(filter('Table','Table'[status_name]="Inbox"),'Table'[Ct]))

     

    see attached.