gpt4 book ai didi

excel - 检查VBA中的两个空单元格

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

我一直在尝试检查两个单元格是否为空。我知道如何检查一个单元格,但我不知道如何检查两个单独的单元格。这是我尝试过的方法之一。当我运行它时,它只会检查 F17 而不是 F12,如果我切换数字,它只会检查 F12。我很感激任何帮助。谢谢

Sub Button11VerifyFilePathPresent_Click()
Dim rCell As Range

On Error GoTo ErrorHandle
Set rCell = Range("F17", "F12")

If IsEmpty(rCell) Then
MsgBox "Please select the files" ' "Cell " & rCell.Address & " is empty."
End If

BeforeExit:
Set rCell = Nothing
Exit Sub
ErrorHandle:
MsgBox Err.Description & " Error in procedure CellCheck."
Resume BeforeExit

End Sub

最佳答案

考虑:

If Range("F17") & Range("F12") = "" Then

如果串联为空,则它们都必须为空。

关于excel - 检查VBA中的两个空单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24275140/

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