spliting a matrix in 1 column

M

Marc Bonnet

I have a matrix that I need to align in one single column,
(column 1 first, then column 2 beside it, ...)
Is there any function to do that ?
TIA
MB-orage
 
A

Andy Brown

Is there any function to do that ?

Well, there's stuff you can do with formulas. Say you have data in A1:D4. In
F1, enter

=OFFSET($A$1,MOD(ROW()-1,4),INT((ROW()-1)/4))

and drag down to F16.

For 5 x 5, you'd just use

=OFFSET($A$1,MOD(ROW()-1,5),INT((ROW()-1)/5))

HTH,
Andy
 
A

Alan Beban

See my reply in this newsgroup this morning to "How to Transpose a table
to a single column" by king_jeremy.

Alan Beban
 

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

Top