这是我第一次使用VBA。对于以下代码片段:
Dim i As Integer
Set i = 0
For Each v In dictDT.Keys
Cells(10, 5 + i) = dictDT.Item(v)
i = i + 1
Next
我一直收到这个错误:
Compile Error: Object Required
我做错了什么?
答案 0 :(得分:12)
更改
Set i = 0
到
i = 0
只有对象需要Set关键字。其他变量类型则没有。