Forum Discussion
leolo7
Dec 02, 2021Copper Contributor
Combine two matrix one under the other
Hi, I have two tables : [Group_A], [Group_B]. I want to put all the data of each other in one table. I want to use formulas because each table might grow over the time. The purpose is to analyse the...
SergeiBaklan
Dec 02, 2021Diamond Contributor
If your Excel supports dynamic arrays that could be
=LET(
rA, ROWS(T_Result_A),
rB, ROWS(T_Result_B),
clmns, COLUMNS(T_Result_A),
k, SEQUENCE(rA+rB, clmns),
i, INT( (k-1)/clmns)+1,
j, MOD(k-1, 5) +1,
IF( i <= rA, INDEX(T_Result_A, i, j), INDEX(T_Result_B, i-rA, j) ) )- leolo7Dec 02, 2021Copper ContributorHi,
Wow, I like that, very simple. Is it possible that the output will a dynamic array? Or can we transform this in a Dynamic array? If yes, can we define Headers?- SergeiBaklanDec 04, 2021Diamond Contributor
Sorry, I didn't catch. Output is the spill, aka dynamic array.