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 Power Bi?
Hi harryli ,
Please try this:-
Measure= CONCATENATEX ( VALUES ( 'Table'), [Room_id], "," )BR,
Samarth
2 Replies
- Samarth_18Community Champion
Hi harryli ,
Please try this:-
Measure= CONCATENATEX ( VALUES ( 'Table'), [Room_id], "," )BR,
Samarth
- harryliHelper II
Thanks, and it works.