Forum Discussion
grantmcyorku
Dec 23, 2021Copper Contributor
Help Transposing every 2 Columns to Rows
Hoping someone can help me out. I'm looking for an automated way to transpose every 2 columns to rows. I want to go from this: To this: Thanks!
prakashbabu250
Copper Contributor
tauqeeracma it works fine. plz give the formula for multiple rows
SergeiBaklan
Aug 22, 2023MVP
If on 365
=HSTACK(
TOCOL(CHOOSECOLS(range, SEQUENCE(, COLUMNS(range) / 2, , 2))),
TOCOL(CHOOSECOLS(range, SEQUENCE(, COLUMNS(range) / 2, 2, 2)))
)