how to add sound ( beep ) if cell content changes in live data ? Thanks
S ShaneDevenshire Aug 28, 2008 #2 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
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