Excel: how to combine 3 columns into 1 row in specific order -
Excel: how to combine 3 columns into 1 row in specific order -
in excel 2010 how can mix 3 columns of info 1 column in specific order shown in picture?
you vba there options maintain dynamic formulas if want
the next formula entered column , copied downwards far needs go.
=offset(top_left_cell,int((row(a1)-first_row_output)/num_columns),mod((row(a1)-first_row_output),num_columns)) example
=offset($a$1,int((row(a1)-1)/3),mod((row(a1)-1),3)) what keeps reference in top left cell of input table , offsets either left or down
the column offset controlled mod((row(a1)-1),3) divides incrementing number 3 , takes remainder.
the row offset controlled int((row(a1)-1)/3) divides incrementing number 3 , returns integer part of formula.
excel excel-2010
Comments
Post a Comment