Convert Excel Columns into Rows -


please take @ attached snapshot.

table how convert original table required table, in easiest manner ?

here, have shared small sample, real table quite big having more 100 rows / symbols , 100 columns / dates. therefor not possible manually copy paste data change table format. final output table have 3 columns "symbol, date , value" arranged according dates in ascending order.

please suggest how this. thanks

here is. put original table in 1 sheet, sheet1. top left cell being a1 = symbol
go sheet, sheet2.
in cell a1 put: symbol
in cell b1 put: date
in cell c1 put: value

go cell a2 , put formula:

=indirect("sheet1!a" & 2+mod(row()-2; x);true) 

go cell b2 , put formula:

=indirect("sheet1!r1c" & 2+rounddown((row()-2)/x;0);false) 

go cell c2 , put formula:

=indirect("sheet1!r" &2+mod(row()-2; x)&"c" & 2+rounddown((row()-2)/x;0);false) 

in formulas above, replace x number of symbols got. in original table there 4.
now fill down needed
note: if functions don't work, use comma(,) instead of semicolon(;).


Comments

Popular posts from this blog

PHPMotion implementation - URL based videos (Hosted on separate location) -

c# - Unity IoC Lifetime per HttpRequest for UserStore -

I am trying to solve the error message 'incompatible ranks 0 and 1 in assignment' in a fortran 95 program. -