G
Guest
I am currently using the following to generate a ringing sound if cell B13 is
greater than cell B14 and it works fine. I cannot find a way to get it to
perform a second logit test and make second sound (chimes) if the two cells
are equal. Is there a way to do this? Thanks in advance.
Private Sub Worksheet_Change(ByVal Target As Range)
If Sheets("Sheet2").Range("b13") > Sheets("Sheet2").Range("b14") Then
Application.Run "Ringing"
End If
End Sub
greater than cell B14 and it works fine. I cannot find a way to get it to
perform a second logit test and make second sound (chimes) if the two cells
are equal. Is there a way to do this? Thanks in advance.
Private Sub Worksheet_Change(ByVal Target As Range)
If Sheets("Sheet2").Range("b13") > Sheets("Sheet2").Range("b14") Then
Application.Run "Ringing"
End If
End Sub