Forum Discussion
Fonlovedog207
3 years agoFrequent Visitor
How to get data form transection selection
I need create column delay reason relate by comumn max receive date
- Anonymous3 years ago
Hi Fonlovedog207 ,
Please try below steps:
1. below is my test table
Table:
2. create a new column with below dax formula
Column = VAR cur_id = 'Table'[ID] VAR max_date = MAXX ( 'Table', [Date] ) VAR _val = CALCULATE ( MAX ( 'Table'[Status] ), FILTER ( 'Table', 'Table'[ID] = cur_id && 'Table'[Date] = max_date ) ) RETURN _valPlease refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
4 Replies
- AnonymousNot applicable
Hi Fonlovedog207 ,
Please try below steps:
1. below is my test table
Table:
2. create a new column with below dax formula
Column = VAR cur_id = 'Table'[ID] VAR max_date = MAXX ( 'Table', [Date] ) VAR _val = CALCULATE ( MAX ( 'Table'[Status] ), FILTER ( 'Table', 'Table'[ID] = cur_id && 'Table'[Date] = max_date ) ) RETURN _valPlease refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. - Fonlovedog207Frequent Visitor
I try it but Still not the result I want
- Fonlovedog207Frequent Visitor