Borisw37
Borisw37

Reputation: 759

Google Sheets - generate sublist / filtered group

I have a list that contains:

Column A-Name; Column B-Group

Group is a number from 1 to 10.

Next I have columns with group headings 1, 2, 3...10

What I want is under each Group# to list the names that belong to that group.

Any idea if this can be done in google sheets?

Upvotes: 0

Views: 2895

Answers (1)

Akshin Jalilov
Akshin Jalilov

Reputation: 1716

In cell C2 type:

=FILTER($A:$A,$B:$B=C$1)

And then drag it across to L2

Upvotes: 1

Related Questions