Hi all,

The macro below is adding the SUM cell. Is it possible to make a beep sound when SUM cell value will be the same as one on the left?


If Target.Columns.count > 1 Then Exit Sub
If Not Intersect(Target, Range("M3:M5000")) Is Nothing And _
Target.count = 1 And IsNumeric(Target.Value) Then
    If Target.Value > 0 Then
    Application.EnableEvents = False
    count = WorksheetFunction. _
    RoundUp(Cells(Target.Row, "K") / Target.Value, 0)
    Target.Offset(1).Resize(count).EntireRow.Insert
    With Cells(Target.Row, "L")
    .Formula = "=SUM(" & .Offset(1, -1).Resize(count).Address(0, 0) & ")"
    End With
    Application.EnableEvents = True
    Cells(Target.Row, "N").Value = count
    s.Speak count
    End If
End If