gpt4 book ai didi

excel - 在即时窗口中显示变量数组值

转载 作者:行者123 更新时间:2023-12-04 10:48:19 25 4
gpt4 key购买 nike

我正在使用第三方加载项,这似乎可以正常工作。但是,我无法在即时窗口中显示变量数组元素的值。我找到了解决方法,但我仍然想知道问题是什么以及如何解决它。

有一个包含数据的对象变量。

Dim odsDataSeries As DataSeries
Set odsDataSeries = odfData.GetSeries("ELY(high)")

在监 window 口中,您可以看到名为“索引”的变量数组...

enter image description here

在即时窗口中,我键入...
?odsDataSeries.Index(1)

但它给出错误消息“参数数量错误或属性分配无效”

如果我使用加入,那么我会得到数据......
?join(odsDataSeries.Index)
3/01/2020 2/01/2020 31/12/2019 etc...

在我的代码中,我还能够编写...
Dim v As Variant
v = odsDataSeries.Index
Stop

然后,当我在即时窗口中查询 v 中的元素时,它可以工作......
?v(1)
2/01/2020

所以我的问题是......为什么我的即时窗口查询“?odsDataSeries.Index(1)”不起作用?有一段时间我认为 Index 不是公共(public)的,我无法编写循环来处理数组(除非我将数组放入另一个变量中,否则我仍然不能,如上所示)。请注意,在我的代码中编写此代码会给出相同的错误消息(在编译时)。

我正在添加我的整个子以供引用。请注意,我使用了早期绑定(bind)。 excel 插件是一个.xll 文件,我看不到里面的代码(因为我还没有 COM 技能)。
Dim av As New AlphaVantageExcelDataCOMFunctions

Public Sub PublicLoadData()
On Error GoTo 0
Dim odfData As DataFrame
Set odfData = av.AVGetEquityTimeSeries("ELY", "Daily", True, "compact")
Dim odsDataSeries As DataSeries
Set odsDataSeries = odfData.GetSeries("ELY(high)")
Dim v As Variant
v = odsDataSeries.Index
Debug.Print GetVariableType(odsDataSeries.Index)
Stop
End Sub 'PublicLoadData

我的 GetVariableType() 函数返回“变体数组”。如果您想要此代码,请告诉我。

所以问题再次是......在我输入的即时窗口中......
?odsDataSeries.Index(1)

但它给出错误消息“参数数量错误或属性分配无效”

如果我使用加入,那么我会得到数据......
?join(odsDataSeries.Index)
3/01/2020 2/01/2020 31/12/2019 etc...

当我在即时窗口中查询 v 中的元素时,它可以工作......
?v(1)
2/01/2020

Here is a link to the DataSeries Documentation

最佳答案

假设有一个对象 someObject使用方法(或属性)getArray没有输入参数并返回一个数组。

您可以通过执行 arr = someObject.getArray 来检索数组与 arr = someObject.getArray() 相同没有显式传递的参数。要通过一行代码从该数组中检索单个元素,您应该执行 someObject.getArray()(0) ,其中第一个括号指的是方法调用,第二个括号表示数组中元素的索引。

注意,虽然表达式 someObject.getArray()(i)适用于单元素请求,例如。 G。在即时窗口中,但如果在循环中使用,每次迭代检索数组可能会导致大量开销。因此,您应该在循环之前将数组放入变量中。

下面是一个例子,展示了常用 Dictionary 的一些棘手行为。目的。您可以通过 dict.Keys(i) 从方法返回的键数组中检索元素早期绑定(bind):

Sub testEarlyBoundDict()

' Need to include a reference to "Microsoft Scripting Runtime"

Dim earlyBoundDict As Dictionary
Set earlyBoundDict = New Dictionary
Set earlyBoundDict = CreateObject("Scripting.Dictionary")
earlyBoundDict("myKey") = "myValue"
Debug.Print earlyBoundDict.Keys(0)

End Sub

但是如果你使用后期绑定(bind),那么你必须编写额外的括号:
Sub testLateBoundDict()

' Need no references

Dim lateBoundDict As Object
Set lateBoundDict = CreateObject("Scripting.Dictionary")
lateBoundDict("myKey") = "myValue"
Debug.Print lateBoundDict.Keys()(0)
Debug.Print lateBoundDict.Keys(0) ' fails

End Sub

要创建防故障代码,我建议始终使用 someObject.getArray()(i) .

关于excel - 在即时窗口中显示变量数组值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59597209/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com