Forum Discussion
New customized column
- Anonymous3 years ago
Hi Rada137 ,
Here are the steps you can follow:
1. In Power Query -- Add Column – Index Column – From 1.
2. Create calculated column.
Column = var _Index= MAXX(FILTER(ALL('Table'),'Table'[shipment]=EARLIER('Table'[shipment])&&'Table'[plate]=EARLIER('Table'[plate])&&'Table'[shipDate]=EARLIER('Table'[shipDate])),[Index]) return IF( 'Table'[Index]=_Index,"Yes","No")3. Result:
Whether it meets your expected results, if not, you can represent your expected results in the form of pictures, and we can help you better.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi Rada137 ,
Here are the steps you can follow:
1. In Power Query -- Add Column – Index Column – From 1.
2. Create calculated column.
Column =
var _Index= MAXX(FILTER(ALL('Table'),'Table'[shipment]=EARLIER('Table'[shipment])&&'Table'[plate]=EARLIER('Table'[plate])&&'Table'[shipDate]=EARLIER('Table'[shipDate])),[Index])
return
IF(
'Table'[Index]=_Index,"Yes","No")
3. Result:
Whether it meets your expected results, if not, you can represent your expected results in the form of pictures, and we can help you better.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly