List to grid

  • Thread starter Thread starter Jim
  • Start date Start date
J

Jim

Hi

Anyone know how to convert a list of number (A1:A78) to a 6 column grid so
the numbers go down 6 rows and down the next 6 rows etc until you reach the
end of the list/col?

I'd like to do it in VBA but I'm not clever enough!

Thanks

Jim
 
Perhaps a formula which can also re-arrange it
while you await the vba way

In B1:
=OFFSET($A$1,ROW(A1)+COLUMN(A1)*6-7,)
Copy B1 down to B6, fill across to N6 to exhaust the source col
 
Max

That's great, many thanks.

Jim

Max said:
Perhaps a formula which can also re-arrange it
while you await the vba way

In B1:
=OFFSET($A$1,ROW(A1)+COLUMN(A1)*6-7,)
Copy B1 down to B6, fill across to N6 to exhaust the source col
 
Not clear what "down 6 rows and down the next 6 rows" means.

Do you mean across 6 columns?

1,2,3,4,5,6
7,8,9,10,11,12

Or 6 columns with 1 - 13, 14 - 26 etc.?


Gord Dibben MS Excel MVP
 
A question here.

Max's method gives you a 13 column by 6 row grid.

How does that reconcile with "convert a list of number (A1:A78) to a 6 column
grid "?


Gord
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top