标签: vba
我在VBA的函数中有以下声明:
Set dict = CreateObject("Scripting.Dictionary")
当我尝试使用代码GetDates = dict返回dict时出现错误。有人可以帮忙吗?
GetDates = dict
谢谢!
答案 0 :(得分:3)
Set GetDates = dict
你必须使用Set。