Forum Discussion
Anonymous
6 years agoNot applicable
DAX : Create a filtered column based on another column
Hello, I'm struggling with a DAX column calculation, I want to create a column based on a specific row, there are information about columns concerned : - Event_Biztranslist : ID of parcel ...
- 6 years ago
Hi Anonymous ,
Try this:
Column = CALCULATE ( FIRSTNONBLANK ( 'Table (2)'[Relation_Type], MIN ( 'Table (2)'[Event_Time] ) ), FILTER ( ALLEXCEPT ( 'Table (2)', 'Table (2)'[Event_Biztranslist] ), 'Table (2)'[Event_Type] = "OE" ) )Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
Super User
6 years agoAnonymous ,For Rank Refer these links
https://radacad.com/how-to-use-rankx-in-dax-part-2-of-3-calculated-measures
https://radacad.com/how-to-use-rankx-in-dax-part-1-of-3-calculated-columns
https://radacad.com/how-to-use-rankx-in-dax-part-3-of-3-the-finale
https://community.powerbi.com/t5/Community-Blog/Dynamic-TopN-made-easy-with-What-If-Parameter/ba-p/367415
- Anonymous6 years agoNot applicable
Hello amitchandak
Thanks for your answer,
The rank had already done in the concerned columns, the idea is to return for each row of the parcel ID, the value of [Readpoint_type] associated to the "ObjectEvent" value
Driss