Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Counting the Most Recent Status

The target is to count the most recent activity status by date. I currently have COUNTROWS of a table and that is correctly giving me all status categorized by dates but there is a new requirement only asking for a total count of the most recent activity status. Any suggestions on how to structure a measure that will result in a count of the most recent activity status?

 

Below is sample data: table 1 = source data / table 2 = expected output

(Table 1 = source data)

DateStore_IDActivity_Status
Wednesday, October 28, 20201New
Thursday, October 29, 20201In Progress
Friday, October 30, 20201Complete
Friday, January 29, 20212New
Monday, February 1, 20213New
Monday, February 1, 20214New
Tuesday, February 2, 20213In Progress

 

(Table 2 = expected output)

Month_YearMost_Recent_ActivityStatus_Count
October 20201
January 20211
February 20212

 

Your advice will be greatly appreciated. 

3 Replies

    • Anonymous's avatar
      Anonymous
      Not applicable

      Thank you for your support. I was able to figure out a measure to give me the count of the most recent activity with the following: 

       

      Store ID Count = COUNTROWS(DataTable)

       

      Most Recent Activity Count =
      CALCULATE(
      [Store ID Count],
      FILTER(
      DataTable,
      MAX(DataTable[Store_ID])
      ),
      LASTDATE(DataTable[Date])
      )

       

      My problem now is that when I drop this information into a matrix table, the individual activities are still visable. Although the count is correct, is there a way for me to not have the individual activities visable? 

       

      Your advice is greatly appreciated. 

      • mwegener's avatar
        mwegener
        Most Valuable Professional

        Hi Anonymous ,
        can you share some screenshots of the data model and matrix?