This is my first time with VBA. For the following code snippet:
Dim i As Integer
Set i = 0
For Each v In dictDT.Keys
Cells(10, 5 + i) = dictDT.Item(v)
i = i + 1
Next
I keep getting this error:
Compile Error: Object Required
What am I doing wrong?
source
share