Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I was wondering if it is possible to play a wav file when the value of a cell
changes. If so, how can I do this? Any suggestions would help, thanks! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() "Ruben" wrote in message ... I was wondering if it is possible to play a wav file when the value of a cell changes. If so, how can I do this? Any suggestions would help, thanks! Hi Ruben You can also coax Excel to issue a vocal warning when the target cell changes Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address = "$A$1" Then Application.Speech.Speak "The cell contents have changed" End If End Sub Regards N10 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Sounds simple but isn't - displaying cell text | Excel Worksheet Functions | |||
I played with my windows theme, now I can't see Excel cell format | Excel Discussion (Misc queries) | |||
Want to make conditional sounds based on cell values in Excel | New Users to Excel | |||
can you import an mp3 to VB in Excel '03 to be played when a form. | Excel Programming | |||
playing sounds from cell value | Excel Programming |