I want a message to pop up if the value on any cell in of a range of cells is equal to 'False"
at the moment I only can run it if one cell is equal to false. but I want to add the condition so it includes if any cell in a range (A:1 to A:10) is equal to 'false'
Private Sub Worksheet_Calculate()
If Range("BP7").Value = False Then
MsgBox "Update The Schedule Start time"
End Sub
Thanks for the help
at the moment I only can run it if one cell is equal to false. but I want to add the condition so it includes if any cell in a range (A:1 to A:10) is equal to 'false'
Private Sub Worksheet_Calculate()
If Range("BP7").Value = False Then
MsgBox "Update The Schedule Start time"
End Sub
Thanks for the help