Concatenating Strings from Multiple Rows
I’ve been thinking about how I can do this, but am coming up short. In a simple example, this is what the data looks like:
ID1 / String1
ID1 / String2
ID2 / String3
ID2/ String4
ID2 / String5
The end result of my data design is that I want to concat all the strings for each ID like this
ID1 / String1 String2
ID2 / String3 String4 String5
Can anyone help me think of a way to accomplish this? Thanks!