aberenguel
Board Regular
- Joined
- Aug 10, 2006
- Messages
- 83
Can someone explain how I can get excel to run a macro whenever the value of a certain cell is FALSE?
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
If Sheets("Sheet1").Range("A1").Value = False Then
'your code here
End If
End Sub