I'm trying to change the trigger from Worksheet_Change to worksheet_calculate cannot get it to work.
Private Sub Worksheet_Change(ByVal target As Range)
If target.Cells.Count <> 1 Then Exit Sub
If target.Address <> "F13" Then Exit Sub
If (target.Value >= 0) And (target.Value < 0) ThenExit Sub
Pictures("Picture 38").Visible = (target.Value>= 0)
Pictures("Picture 40").Visible = (target.Value< 0)
End Sub
Private Sub Worksheet_Change(ByVal target As Range)
If target.Cells.Count <> 1 Then Exit Sub
If target.Address <> "F13" Then Exit Sub
If (target.Value >= 0) And (target.Value < 0) ThenExit Sub
Pictures("Picture 38").Visible = (target.Value>= 0)
Pictures("Picture 40").Visible = (target.Value< 0)
End Sub