ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Flashing Cell (https://www.excelbanter.com/excel-programming/284257-flashing-cell.html)

ZAK

Flashing Cell
 
Hi

Does anyone one know how I can get a cell to flash and/or
make noise when it reacheds a certain value. I am trying
to alert the users.

Regards

Zak

Chip Pearson

Flashing Cell
 
Zak,

You can use Conditional Formatting from the Format menu to change
the color of the background and/or font of the cell when its
value reaches or exceeds a given value. No blinking text, though.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Zak" wrote in message
...
Hi

Does anyone one know how I can get a cell to flash and/or
make noise when it reacheds a certain value. I am trying
to alert the users.

Regards

Zak




[email protected]

Flashing Cell
 
Chip Pearson : Playing WAV Files From VBA
http://www.cpearson.com/excel/excelM.htm#PlayWAV

A the top of a module outside of any procedures, place the following
declaration.

Declare Function sndPlaySound32 Lib "winmm.dll" Alias _
"sndPlaySoundA" (ByVal lpszSoundName As String, _
ByVal uFlags As Long) As Long

Then, to call the function, passing it the name of the WAV file you
want to play:

Call sndPlaySound32("c:\test\MySound.WAV", 0)

-------------------------------------------------------------------------------------------------------

Just some background references on using events :

David McRitchie
http://www.mvps.org/dmcritchie/excel/event.htm

Chip Pearson
http://www.cpearson.com/excel/events.htm

Right click the sheet that contains the cell that changes. Select
'View Code'. Place the following code in the sheet's module. Adjust
the references as needed.

Private Sub Worksheet_Change(ByVal Target As Excel.Range)

If Target = Range("A1") Then
If Target.Value 20 Then _
Call sndPlaySound32("c:\test\MySound.WAV", 0)
End If

End Sub

---------------------------------------------------------------------------------------------------------------

HTH
Paul
--------------------------------------------------------------------------------------------------------------
Be advised to back up your WorkBook before attempting to make changes.
--------------------------------------------------------------------------------------------------------------
Hi

Does anyone one know how I can get a cell to flash and/or
make noise when it reacheds a certain value. I am trying
to alert the users.

Regards

Zak




All times are GMT +1. The time now is 12:07 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com