我想在保存文件之前检查我的工作表中必填字段中的文本。如果单元格 B50:B53 有文本,则相应的单元格 D50:D53 是必需的。如果单元格 B50:B53 为空,则 D 列中的相应字段是可选的。
如果我将此规则应用于一行,则它适用于以下代码。但是,我想测试所有情况(B50 和 D50、B51 和 D51...)。如果不复制代码 4 次,我怎么能做到这一点?
Dim MsgStr As String
Dim ws As Worksheet, r As Range, g As Range
Set ws = wb.Sheets("Allotment hotel")
Set r = ws.Range("B50").Cells
Set g = ws.Range("D50").Cells
If r <> "" And g = "" Then
MsgStr = "Room type was not found in the sheet 'Allotment hotel'"
End If