gpt4 book ai didi

excel - 如何获取当前VBA函数返回的工作表和单元格?

转载 作者:行者123 更新时间:2023-12-02 01:28:24 26 4
gpt4 key购买 nike

是否有一个变量可以提供将接收自定义 VBA 函数结果的工作表和单元格?

例如,如果在 A!B1 中,我的代码中的公式为 =MyCustomFunc():

public function MyCustomFunc()
'what can I call here to get the values "A" and "B1"?
end function

最佳答案

这就是你正在尝试的吗?

Option Explicit

Public Function MyCustomFunc()
'~~> Judicious use of 'Volatile' is advised.
'~~> This will be called everytime the sheet is recalculated
Application.Volatile

MsgBox Application.Caller.Parent.Name & ", " & Application.Caller.Address
End Function

关于excel - 如何获取当前VBA函数返回的工作表和单元格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10344076/

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