Data Organization Functions

These functions provide the ability to reorganize data.

Range Translation (Row x Columns) into Single Column of Data. Ex: in 8×3 matrix, (1,1)==(1,1), (3,1)==(1,3), (4,1)==(2,1)

=INDEX(arrNameOfArray,
   ROUNDUP( ROW() / COLUMNS( arrNameOfArray ) ,
            0),
   ROUNDUP(
     ROUNDUP(
       MOD( ROW() + COLUMNS( arrNameOfArray ) - 1 ,
            COLUMNS( arrNameOfArray )
          ),
       0) + 1,
     0)
   )

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.