gpt4 book ai didi

excel - 如何把这个基于宏的函数变成真正的 VBA 函数?

转载 作者:行者123 更新时间:2023-12-04 21:05:54 26 4
gpt4 key购买 nike

我正在尝试编写一个 VBA 函数,以便可以访问已关闭的 Excel 工作簿的单元格值。我在网上发现可以写一个这样的宏例程:

Public Sub TestGetValue()

p = "C:\Users\Jake\Desktop"
f = "TestSample.xlsx"
s = "Sheet1"
a = "B10"

Call GetValue(p, f, s, a)
x = GetValue(p, f, s, a)
MsgBox x

End Sub

Public Function GetValue(path, file, sheet, ref)
' Retrieves a value from a closed workbook
Dim arg As String
' Make sure the file exists
If Right(path, 1) <> "\" Then path = path & "\"
If Dir(path & file) = "" Then
GetValue = "File Not Found"
Exit Function
End If
' Create the argument
arg = "'" & path & "[" & file & "]" & sheet & "'!" & _
range(ref).range("A1").Address(, , xlR1C1)
' Execute an XLM macro
GetValue = ExecuteExcel4Macro(arg)
End Function
我可以运行 TestGetValue()作为宏,但是当我尝试使用 GetValue()作为直接在 Excel 单元格中的自定义 VBA 函数,它不起作用。看来 GetValue = ExecuteExcel4Macro(arg) 行无法执行。
有谁知道如何解决这个问题?我正在使用 Excel 2010。

最佳答案

据我所知,函数ExecuteExcel4Macro没有定义。但可能还有更简单的方法。
尝试打开包含所需值的工作簿。例如。

Dim tempWb As Workbook
Dim testValue

Set tempWb = Application.Workbooks.Open(path)
testValue = tempWb.Sheets(1).Cells(1,1)
路径可以像您的示例一样传递。

关于excel - 如何把这个基于宏的函数变成真正的 VBA 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19482149/

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