Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I want to add a sound file to any cell in excel so that when the data is
entered into the cell by a user or when a calculation is performed by say an IF statement, that expression is TRUE then a sound is made. |
#2
![]() |
|||
|
|||
![]()
You might use a worksheet_change event to hyperlink to a .wav file anywhere
on your computer. -- Don Guillett SalesAid Software "Martin" wrote in message ... I want to add a sound file to any cell in excel so that when the data is entered into the cell by a user or when a calculation is performed by say an IF statement, that expression is TRUE then a sound is made. |
#3
![]() |
|||
|
|||
![]()
HI, How do you do it!
"Don Guillett" wrote: You might use a worksheet_change event to hyperlink to a .wav file anywhere on your computer. -- Don Guillett SalesAid Software "Martin" wrote in message ... I want to add a sound file to any cell in excel so that when the data is entered into the cell by a user or when a calculation is performed by say an IF statement, that expression is TRUE then a sound is made. |
#4
![]() |
|||
|
|||
![]()
right click sheet tabview codeinsert thismodify to suitSAVE
Now if you ENTER something in that cell the .wav will play Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address = "$A$1" Then ActiveWorkbook.FollowHyperlink Address:="c:\yourfolder\yourwavefile.wav" End If End Sub -- Don Guillett SalesAid Software "Martin" wrote in message ... HI, How do you do it! "Don Guillett" wrote: You might use a worksheet_change event to hyperlink to a .wav file anywhere on your computer. -- Don Guillett SalesAid Software "Martin" wrote in message ... I want to add a sound file to any cell in excel so that when the data is entered into the cell by a user or when a calculation is performed by say an IF statement, that expression is TRUE then a sound is made. |
#5
![]() |
|||
|
|||
![]()
Hi Don, this work fine if I enter the data in this cell, so thanks for this,
but I want to add data into say cell $D$3 and using an if statement, if it is true and the text appears in the cell the ding sounds. like: if(D310,"too high","") so if the value in cell 3 is more than 10 then the sound is played otherwise it is silent "Don Guillett" wrote: right click sheet tabview codeinsert thismodify to suitSAVE Now if you ENTER something in that cell the .wav will play Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address = "$A$1" Then ActiveWorkbook.FollowHyperlink Address:="c:\yourfolder\yourwavefile.wav" End If End Sub -- Don Guillett SalesAid Software "Martin" wrote in message ... HI, How do you do it! "Don Guillett" wrote: You might use a worksheet_change event to hyperlink to a .wav file anywhere on your computer. -- Don Guillett SalesAid Software "Martin" wrote in message ... I want to add a sound file to any cell in excel so that when the data is entered into the cell by a user or when a calculation is performed by say an IF statement, that expression is TRUE then a sound is made. |
#7
![]() |
|||
|
|||
![]()
Hi Martin
I want to do the same thing but have not been successfull, have you found a solution? "Martin" wrote: I want to add a sound file to any cell in excel so that when the data is entered into the cell by a user or when a calculation is performed by say an IF statement, that expression is TRUE then a sound is made. |
#8
![]() |
|||
|
|||
![]()
Didn't you just get an answer from Debra?
-- Vasant "George" wrote in message ... Hi Martin I want to do the same thing but have not been successfull, have you found a solution? "Martin" wrote: I want to add a sound file to any cell in excel so that when the data is entered into the cell by a user or when a calculation is performed by say an IF statement, that expression is TRUE then a sound is made. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? | Excel Discussion (Misc queries) | |||
I have opened an Excel file and I can't edit any cell | New Users to Excel | |||
Problem opening an XML file in Excel - getting "ns1:macrosPresent" | Excel Discussion (Misc queries) | |||
Using Jet to read excel file returns blank for last cell - sometim | Excel Discussion (Misc queries) | |||
GET.CELL | Excel Worksheet Functions |