this is pretty simple and I can't get my head around how to do it! I'm trying to do a:
=TEXTJOIN(", ",TRUE,G:G)
But not sure how to group it by business.
In excel, I have a data set which is like the below:
Business | Location |
---|---|
Mary's | United Kingdom |
Mary's | United States |
Mary's | Canada |
Bill's | Bolivia |
Bill's | Canada |
Adam's | Iceland |
Adam's | United States |
But for each of these businesses, I need to convert it to this:
Business | Location |
---|---|
Mary's | United Kingdom, United States, Canada |
Bill's | Bolivia, Canada |
Adam's | Iceland, United States |
Can anyone give any tips?
Thanks!