๐Ÿ“ The Grid Flattener

Goal: Reshape a 2D Matrix into a 1D List.
TOCOL: Stacks data vertically.
TOROW: Lays data out horizontally.

Input (3x3)
โฌ‡
Result Array
Ready...

๐Ÿ’ป Formula Structure

=TOCOL(array, [ignore], [scan_by_col])
  • 1. Array: The range to flatten.
  • 2. Ignore: 0=Keep All, 1=No Blanks, 2=No Errors.
  • 3. Scan By Col: FALSE (Row-by-Row, Default), TRUE (Col-by-Col).
-- Flatten array
=TOCOL( A1:C3 )
Final Shape:
-

โš ๏ธ Power Tip

๐Ÿงน Ignoring Blanks
Use the 2nd argument to clean data instantly.
=TOCOL(A1:C10, 1) removes empty cells and collapses the list perfectly.