3

I'm trying to merge rows with same IDs in Google Sheets

From:

ID     | Category
Augur  | A1
Augur  | A2
Augur  | A3
Augur1 | A1
Augur1 | A2
Augur1 | A3

To:

ID     | Category
Augur  | A1; A2; A3
Augur1 | A1; A2; A3

Is there an automatic way to do it in Google Sheets itself, using its native functions?

player0
  • 124,011
  • 12
  • 67
  • 124
kristoff
  • 93
  • 9

1 Answers1

2
=ARRAYFORMULA(QUERY({INDEX(QUERY(A1:B, 
 "select A,count(A) where A is not null group by A pivot B", 0), , 1),
 REGEXREPLACE(TRIM(TRANSPOSE(QUERY(TRANSPOSE(IF(ISNUMBER(QUERY(A1:B, 
 "select count(A) where A is not null group by A pivot B", 0)), INDEX(QUERY({A1:A,B1:B&";"},
 "select count(Col1) where Col1 is not null group by Col1 pivot Col2 offset 1", 0), 1,), ))
 , , 999^99))), ";$", )}, "offset 1", 0))

0

player0
  • 124,011
  • 12
  • 67
  • 124