how to add sound ( beep ) if cell content changes in live data

S

ShaneDevenshire

Hi,

Add the following code to the appropriate Sheet object:

Private Sub Worksheet_Change(ByVal Target As Range)
Beep
End Sub

or the following code to the thisWorkbook object:

Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Beep
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top