Forum Discussion
Looping between 2 rows and create a 3rd row
- 3 years ago
Hi norocdinu ,
According to your description, It's easy to do in DAX with PATH function, create a calculated column.
Column = PATHITEM ( PATH ( 'Table'[ID], 'Table'[New ID] ), 1, TEXT )I shuffled the data order of the sample, get correct result:
I attach my sample below for your reference.
Best Regards,
Community Support Team _ kalyjIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi norocdinu ,
According to your description, It's easy to do in DAX with PATH function, create a calculated column.
Column =
PATHITEM ( PATH ( 'Table'[ID], 'Table'[New ID] ), 1, TEXT )
I shuffled the data order of the sample, get correct result:
I attach my sample below for your reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- norocdinu3 years agoFrequent Visitor
Thank you! This worked perfectly!