1. Flatten customer names and plans into a single list
| Customer | Plan |
| Acme Corp | Pro |
| TechStart | Basic |
| Global Inc | Enterprise |
| StartupX | Pro |
| SmallBiz | Basic |
=FLATTEN(A2:B6)Result: Acme CorpProTechStartBasicGlobal IncEnterpriseStartupXProSmallBizBasic
FLATTEN reads the 2×5 range left-to-right, top-to-bottom: row 1 gives Acme Corp, Pro; row 2 gives TechStart, Basic, etc. This converts multiple columns into a single-column array with 10 values, essential for functions that expect columnar input.