gpt4 book ai didi

excel - 如果语句仅在选择在特定列内时执行操作

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

我正在尝试完成此宏,该宏将打开另一个工作簿,将选定的单元格复制并粘贴到另一个工作簿中。 I want to do this only when the selection is in column A and only when the selection contains data.

如果选择包含数据部分很简单,但是我怎样才能声明如果选择不在 A 列中,那么 MsgBox("Please select data") ?

这里是if语句到目前为止,它仍然需要上面直接提到的部分。

'Warns if no QN#s are selected
If Selection = "" Then
MsgBox ("Please Select Your QN#s Before Running This Macro")
Exit Sub
End If

最佳答案

这似乎适用于识别单元格是否在某个列内。

If Not Intersect(Selection, Range("A:A")) Is Nothing Then
'Proceed
Else
MsgBox ("Please Select Your QN#s Before Running This Macro")
Exit Sub
End If

关于excel - 如果语句仅在选择在特定列内时执行操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53504506/

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