What is the formula for displaying cells in a 3 cell increment at a time, like A1, A4, A7, A10?

Moreover, would it be possible to transform below a list (1x15) of data into a table(3x5). Thanks.

PS. The original data is in A1-A15. I want it displayed in B1:D5 (a 3x5 view).

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted
=OFFSET($A$1,COLUMN()-2+ROW()*3-3,0)

Place it in cells B1:D5

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.