SOLVED

Move data from cells in one column to new columns

Copper Contributor

I want to take a list of excel data that has Name, Company, Title of 300 different people in one Column, and transpose (?) it so that Name is in column A, Company in Column B, Title in Column C.  Apologies but I can't find out how to do that anywhere or maybe I don't have the right language to articulate what I'm trying to do. Seems like it should be an easy move - advice? thanks!  

4 Replies
best response confirmed by Terri372 (Copper Contributor)
Solution

@Terri372 

If you have 365, it's straightforward:

=WRAPROWS(A1:A9,3)

Patrick2788_0-1666193296362.png

Without WRAPROWS, you could do:

=LET(names,A1:A9,INDEX(names,SEQUENCE(ROWS(names)/3,3)))

@Terri372 

An alternative could be Power Query.

name company title.JPG

Yes!! Thank you WrapRows worked. Whew. Appreciate the quick and easy response.
Glad it worked!
1 best response

Accepted Solutions
best response confirmed by Terri372 (Copper Contributor)
Solution

@Terri372 

If you have 365, it's straightforward:

=WRAPROWS(A1:A9,3)

Patrick2788_0-1666193296362.png

Without WRAPROWS, you could do:

=LET(names,A1:A9,INDEX(names,SEQUENCE(ROWS(names)/3,3)))

View solution in original post