从嵌套字典中返回密钥excel vba

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从嵌套字典中返回密钥excel vba相关的知识,希望对你有一定的参考价值。

我有问题,嵌套字典的键返回到调用子函数。它返回运行时错误'424'对象必需

Set LoadCombinationDict = LCaseDict()
Set a = fs.CreateTextFile(file_name, True)

    For Each LCKey In LoadCombinationDict.Keys
        Line = LCKey
        For Each AddnlKey In AddnlCaseDict.Keys
            X = LoadCombinationDict(LCKey)(AddnlKey)
            Line = Line & ";" & X
        Next AddnlKey
        a.WriteLine (Line)
     Next LCKey
a.Close

下面是创建嵌套字典的函数

Function LCaseDict() as Scripting.Dictionary
'Some Code to create nested dictionary
End Function

如果我在子函数中包含上面的代码,那么字典就可以完美地运行。有没有办法将主列和嵌套字典的键返回到excel vba中的调用函数?

答案

这是如何迭代字典词典

Set LoadCombinationDict = LCaseDict()
Set a = fs.CreateTextFile(file_name, True)

    For Each LCKey In LoadCombinationDict.Keys
        For Each AddnlKey In LoadCombinationDict(LCKey).Keys
            X = LoadCombinationDict(LCKey)(AddnlKey)
            Line = Line & ";" & X
        Next AddnlKey
        a.WriteLine (Line)
     Next LCKey
a.Close

以上是关于从嵌套字典中返回密钥excel vba的主要内容,如果未能解决你的问题,请参考以下文章

EXCEL VBA统计的代码?

从 Excel VBA 运行嵌套的 Access SQL 查询

从嵌套字典中动态删除项目

如何在Excel VBA中使用字典Dictionary对象

使用 Excel VBA 从公式返回 ABS 值

从嵌套字典列表生成 excel 文件