Reputation: 594
I have a long list which of a persons name, job title and company. The problem is it's in one long list e.g.
Joe Smith
Director
Google
Sam Jones
Marketer
Facebook
Etc
Which makes it very difficult to read. Can I convert this so I end up with a table with first name, job title and company all on separate columns?
Upvotes: 1
Views: 602
Reputation: 1
try:
=QUERY({QUERY(A1:A20, "skipping 3", ),
QUERY(A2:A21, "skipping 3", ),
QUERY(A3:A22, "skipping 3", )}, "where Col1 is not null")
Upvotes: 3