我有两个不同文档中的产品列表和商店列表。我想创建第三个文档,其中每个产品与商店的每个唯一ID在同一行。例如:商店1,2,3,4&&产品V,W,X,Y,Z。存储1应该有5行数据,因此它是1V,1W,1X,1Y,1Z(对于其他商店也是如此)。我该怎么做?
答案 0 :(得分:0)
你问的是从哪里开始并且没有显示任何工作所以我认为你需要最基本的起点?
您的伪代码是这样的:
Create 2 dimensional array where 1st dimension is as large as store list and second dimension is as long as product list
Loop through array first dimension
loop through array second dimension
combine store string and product string with each iteration of loop
finish looping
paste array values into new sheet
您可以查找“Excel VBA如何X”,其中X是这些行中的每一行......或多或少。如果您遇到困难,请打开一个新问题,将代码粘贴到问题中并解释您尝试过的内容,哪些内容无效等等,我们可以为此提供帮助。