如果单元格B34〉0且J34 = 0,是否有方法阻止Excel关闭?
如果他们不填写B34,则不需要填写J34,工作簿可以关闭。
如果他们将数据输入B34,我们也需要J34中的信息。
大概是这样的:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
If Application.Sheets("Sheet1").Range("B34").Value > "" and _
Application.Sheets("Sheet1").Range("B34").Value = "" Then
Cancel = True
MsgBox "Please fill in the total % in cell J34"
End If
End Sub
1条答案
按热度按时间vmjh9lq91#
在ThisWorkbook对象中: