合并数据表

Combining data tables

我有两个数据tables,类似于下面的数据:

table1

index   value
a   6352
a   67
a   43
b   7765
b   53
c   243
c   7
c   543

table 2

index   value
a   425
a   6
b   532
b   125
b   89
b   664
c   314

我想使用索引值将数据合并到一个 table 中,如下面的 table 所示。顺序很重要,所以common table中一个索引下的第一批值必须来自table 1

index   value
a   6352
a   67
a   43
a   425
a   6
b   7765
b   53
b   532
b   125
b   89
b   664
c   243
c   7
c   543
c   314

我尝试使用 VBA 来做到这一点,但遗憾的是我是一个完全的新手,我想知道是否有人对如何编写代码有任何指示?

将第二个 table 的值(不带 headers)复制到第一个 table、select 的值下面,将两个结果列排序索引.

希望有用!