Forum Discussion
Consolidating Column with respect to another column Reference
- 7 years ago
Hi mageshraja
Create a column
Column = "/"&CONCATENATEX(FILTER(Table1,Table1[shop order level1]=EARLIER(Table1[shop order level1])),Table1[shop order level3],"/")
Best Regards
MaggieCommunity Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If you need a MEASURE, you can use CONCATENATEX to combine the values
Measure =
CONCATENATEX (
VALUES ( TableName[Shop Order - Level 3] ),
[Shop Order - Level 3],
"/"
)
- mageshraja7 years agoFrequent Visitor
Hi,
Thanks for the response. But solution is not giving the intended result.
When I try it in NEW COLUMN , all the data values in the column (Shop Order # - Level 3) are getting consolidated . Not reffered by the column (Shop Order # - Level 1).
Hope we need to Refer the column (Shop Order # - Level 1) also into the command. Any suggestions for the same.
- v-juanli-msft7 years ago
Community Support
Hi mageshraja
Create a column
Column = "/"&CONCATENATEX(FILTER(Table1,Table1[shop order level1]=EARLIER(Table1[shop order level1])),Table1[shop order level3],"/")
Best Regards
MaggieCommunity Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.