Forum Discussion
Anonymous
6 years agoNot applicable
Same number - different status
I have the same number multiple times. And I wonder which formula I can use that the Finalstatus is for all 2565 = closed is for all 1534 = open IssueID Date Status FinalStatus 2565 14...
- 6 years ago
Anonymous
You may use the following DAX to add a calculated column.
Column = MAXX ( TOPN ( 1, FILTER ( 'Table', 'Table'[IssueID] = EARLIER ( 'Table'[IssueID] ) ), 'Table'[Date], DESC ), 'Table'[Status] )
amitchandak
Super User
6 years agoTry to create category Min. ask Close is smaller than open it should work
Refer
https://community.powerbi.com/t5/Desktop/MIN-value-based-on-common-ID-number/td-p/247535
- Anonymous6 years agoNot applicable
sorry I do not understand your proposal nor the connection to the linked solution. Can you provide some more details what is your idea?