来自excel文件的多个数据合并为一个特定的csv

时间:2018-03-19 14:59:35

标签: vba excel-vba excel

我必须将多个Excel格式文件中的数据合并到一个特定的CSV文件中。我是VBA的新手,所以我非常感谢任何示例代码。

// map.getLayers().getArray()[1] is your vector layer
draw.on('drawstart', function(e) {
  map.getLayers().getArray()[1].getSource().clear();
});

*这些数据是每个文件1个用户,格式相同。我想通过在每个文件中使用VBA宏,将这些数据一次性附加到一个特定的现有CSV文件中。

Source data from the same Excel format file:
Cell B3: <UserName>
Cell B4: <Department>
Cell B5: <Mail address>

.... 第一行是标题信息。我需要从第二行追加数据。

1 个答案:

答案 0 :(得分:-1)

如果您在Excel中使用合并工具,或使用Power Query,您应该得到您想要的。另外,尝试下面的AddIn。这将执行各种复制/粘贴/合并任务。

https://www.rondebruin.nl/win/addins/rdbmerge.htm

enter image description here