从VBA Excel中的数组中获取值

时间:2015-04-27 12:53:41

标签: excel vba excel-vba

我已经建了一个数组, 当我把它添加到观看

dict.Items

返回

Expression                    Values
dict.Items                  
--dict.Items(0)                "value in it"
--dict.Items(1)                "value in it"
--dict.Items(2)                "value in it"

但是当我尝试将表添加到表达式

dict.Items(0)

返回以下内容

Watch :   : dict.keys(0) : <Property let procedure not defined and property get procedure did not return an object> : Variant/Empty : VBAProject.basMigration.UniqueReport

enter image description here

1 个答案:

答案 0 :(得分:1)

Items方法没有索引 - 它只返回整个数组,因此您需要为Items()(0)而不是Items(0)添加监视