gpt4 book ai didi

excel - 从所选范围中提取工作表名称

转载 作者:行者123 更新时间:2023-12-02 22:14:48 26 4
gpt4 key购买 nike

我必须通过InputBox函数将结果输入到选定的单元格中:

Set OutputStrt = Application.InputBox("Select a cell, where the output should be dropped.", "Output start cell", Type:=8)

当我在不同的工作表中运行代码并希望在不同的工作表中得到结果时,它会将结果放在我最初运行代码的工作表中。

如何获取我通过 Application.InputBox 选择的工作表名称?

例如,当我在输入框中选择:Definitions!$F$38 时,如何获取名称“Definitions”?

最佳答案

试试这个:

Sub test()
Dim Ws As Worksheet
Dim OutputStrt As Range
Set OutputStrt = Application.InputBox("Select a cell, where the output should be dropped.", "Output start cell", Type:=8)
Set Ws = OutputStrt.Worksheet
MsgBox Ws.Name
End Sub

关于excel - 从所选范围中提取工作表名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42124612/

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