» Transposing an Entire Range of Data into a Single Column
CATEGORY - Excel Formula and Function
VERSION - All Microsoft Excel Versions
Transposing all the values from Data Range (cells B3:E5) into a single column.
Solution:
To process the values in Data Range from left to right (i.e. row by row):
Use the OFFSET, INT, ROW, and MOD functions as shown in the formula in cell H3:
=OFFSET($B$3,INT((ROW()-ROW($H$3))/4),MOD(ROW()-ROW($H$3),4))
To process the values in Data Range from top to bottom (i.e. column by column):
Use the OFFSET, MOD, ROW, and INT functions as shown in the following formula in cell I3:
=OFFSET($B$3,MOD(ROW()-ROW($I$3),3),INT((ROW()-ROW($I$3))/3))
Book Store:
Recommended Books:
- Accounting Principles, with CD, 6th Edition
- Microsoft Windows XP Inside Out
- What the IRS Doesn't Want You to Know: A Cpa Reveals the Tricks of the Trade
- Microsoft PowerPoint Version 2002 Step by Step
- The Complete Book of Business Plans: Simple Steps to Writing a Powerful Business Plan (Small Business Sourcebooks)
- Accounting the Easy Way
No comments have been submitted.

