Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
win_anthony
Resolver III
Resolver III

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. 

1 ACCEPTED SOLUTION

Hi @win_anthony ,

 

please check if that helps you.

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast


View solution in original post

3 REPLIES 3

Hi @win_anthony ,

 

please check if that helps you.

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast


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. 

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

 

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast


Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.