Forum Discussion
harryli
4 years agoHelper II
To integrate the data in one column
I would like to integrate each same first col data to be one row, like the following NURSE_ID CARE_AIDE_ID ROOM_ID 11310 HCA001 A1009, A1010 May I ask is able to do this in P...
- 4 years ago
Hi harryli ,
Please try this:-
Measure= CONCATENATEX ( VALUES ( 'Table'), [Room_id], "," )BR,
Samarth
Samarth_18
4 years agoCommunity Champion
Hi harryli ,
Please try this:-
Measure= CONCATENATEX ( VALUES ( 'Table'), [Room_id], "," )
BR,
Samarth
harryli
4 years agoHelper II
Thanks, and it works.