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
supergallager34
Frequent Visitor

Count Distinct Accepted on the latest Date

Hello, 

I have a table where I am trying to count the total number of distinct IDs whose applications have been accepted.

IDApplication StatusLast Accessed
101Accepted8/12/2020
101Accepted8/12/2020
101Denied8/10/2020
105Accepted8/13/2020
109Denied8/13/2020
107Accepted8/13/2020
108Accepted8/12/2020
104Accepted8/12/2013
103Denied8/13/2020
103Denied8/13/2020
105Denied8/12/2020
109Accepted8/12/2020


I know how to do the st Date here but I am trying to know how to pull in the status of the ID and count it based on the latest date.

I am trying to count the number of unique IDs that have been accepted at the most recent date.

1 REPLY 1
amitchandak
Super User
Super User

@supergallager34 , Try a measure like


Measure =
VAR __id = MAX ( 'Table'[ID] )
VAR __date = CALCULATE ( MAX( 'Table'[ Last Accessed] ), ALLSELECTED ( 'Table' ), 'Table'[ID] = __id )
RETURN CALCULATE ( Max ( 'Table'[Last Accessed] ), VALUES ( 'Table'[ID ), 'Table'[ID] = __id, 'Table'[Last Accessed] = __date )

or

Measure =
VAR __id = MAX ( 'Table'[ID] )
VAR __date = CALCULATE ( MAX( 'Table'[ Last Accessed] ), ALLSELECTED ( 'Table' ), 'Table'[ID] = __id )
RETURN CALCULATE ( Max ( 'Table'[Application Status] ), VALUES ( 'Table'[ID ), 'Table'[ID] = __id, 'Table'[Last Accessed] = __date )

 

or

last status = lastnonblankvalue('Table'[Last Accessed] ,Max ( 'Table'[Application Status] ))

take Id and above measure and last accessed date max

 

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.

Top Solution Authors