Forum Discussion

wbadri's avatar
wbadri
Frequent Visitor
6 years ago
Solved

Combine multiple rows with condition

Hi, 

I want to join two cell with same ID in one cell, the below shows the original data, I want to join channel column in one raw

 

Local Cell IDEquipment IDSector IDCabinet No.Subrack No.Slot No.Channel
41191000700R0A
41191000700R0B
41191000700R0C
41196000700R0A
41196000700R0B
41192110710R0A
41192110710R0B
50987110710R0A
50987110710R0B
50987110710R0C
50987110710R0D

This is the required results:

 

Local Cell IDEquipment IDSector IDCabinet No.Subrack No.Slot No.Channel
41191000700R0A,R0B,R0C
41196000700R0A,R0B
41192110710R0A,R0B
50987110710R0A,R0B,R0C,R0D

 

How can i do this? 

Thanks in advance

  • Hi wbadri 

     

    Please use the below measure:

     

    New Channel = CALCULATE(concatenatex('Table', 'Table'[Channel],","))

     

5 Replies