excel 如何检查框中是否填写了信息?

f87krz0w  于 2023-03-09  发布在  其他
关注(0)|答案(1)|浏览(174)

我想我有语法问题。
我想检查是否每个字段都已填写,以便执行后续步骤。
我还有15个牢房要查。
我的代码工作正常,只是第一行因为and ("C24:C22")而出错。

For Each Zellen_auf_Inhalt_prüfen In Range("B7:J7") and ("C24:C22")

    If Zellen_auf_Inhalt_prüfen.Value = "" Then
        MsgBox "Bitte alle Zellen ausfüllen."
        GoTo MacroEnde
    End If

Next Zellen_auf_Inhalt_prüfen

“Zellen auf inhalt prüfen”的意思是检查细胞中是否有任何东西。

41zrol4v

41zrol4v1#

我想你是在找工会声明:

For Each Zellen_auf_Inhalt_prüfen In Union(Range("B7:J7"), Range("C24:C22"))

相关问题