In a standard VBA module, enter this single line:
Public i As Integer
In the worksheet code area, enter the following event macro:
Private Sub Worksheet_Change(ByVal Target As Range)
i = i + 1
If i = 2 Then
i = 0
Application.Speech.Speak "two entries made"
End If
End Sub