Excel VBA-使用数组外的条目创建集合

时间:2018-09-21 06:01:00

标签: excel vba excel-vba

是否可以使用数组的条目创建集合?
我有一个包含三个条目的数组:

dim components(1 to 3)
components(1) = "A"
components(2) = "B"
components(3) = "C"

现在我要遍历数组并为每个组件创建一个集合:

for each c in components
    dim c as new collection
next

但这会引发错误。

谢谢

1 个答案:

答案 0 :(得分:0)

如果需要多个集合,请创建一个集合。您不能将多个集合压缩到变量“ c”中。

for each c in components *add new subcollection to a main collection* next