检查VBA中的两个空单元格

时间:2014-06-18 00:03:22

标签: excel-vba vba excel

我一直在尝试检查两个单元格是否为空。我知道如何检查一个单元格,但我无法弄清楚如何检查两个单独的单元格。这是我尝试过的方法之一。当我运行它时,它只检查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

1 个答案:

答案 0 :(得分:2)

考虑:

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

如果连接为空,则它们都必须为空。