Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi there,
I got data that contains app_id, stage of the application process. An app_id can have multiple stages. To pick the latest stage, there is a column called attribute order which contains a number from 1 to 5. I want to show the latest stages of the application that are 'in progress'. I created a following measure to calculate the no of in progress applications as follow:
I am not sure how to present the map the attribute values to the above mentioned measure. Any help would be really appreciated.
Sample file here
@Dunner2020 , try a measure like
Measure =
VAR __id = MAX ('Table'[App_ID] )
VAR __date = CALCULATE ( MAX('Table'[Attribute Order] ), ALLSELECTED ('Table' ), 'Table'[App_ID] = __id,'Table'[Application_Status__c] = "In Progress" )
CALCULATE ( Countrows ('Table' ), VALUES ('Table'[App_ID] ),'Table'[App_ID] = __id,'Table'[Attribute Order] = __date,'Table'[Application_Status__c] = "In Progress" )
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.