Reputation: 101
I have an excel with values like below
The last Column alone has different values, They are in fact url of images.
How do I merge those values with commas or any separator?
Upvotes: 0
Views: 897
Reputation: 14580
If you have access to FILTER
, UNIQUE
, and TEXTJOIN
:
G1 = UNIQUE(A1:D6)
K1 = TEXTJOIN(", ",TRUE,FILTER(E1:E6,(A1:A6=G1)*(B1:B6=H1)*(C1:C6=I1)*(D1:D6=J1)))
Upvotes: 2