Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
MJB MJB is offline
external usenet poster
 
Posts: 6
Default Audio Queues (sp) in excel 2003

Is it possible to get excel to give audio messages after every 2 entries.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Audio Queues (sp) in excel 2003

In a standard VBA module, enter this single line:

Public i As Integer

In the worksheet code area, enter the following event macro:

Private Sub Worksheet_Change(ByVal Target As Range)
i = i + 1
If i = 2 Then
i = 0
Application.Speech.Speak "two entries made"
End If
End Sub

--
Gary''s Student - gsnu200777


"MJB" wrote:

Is it possible to get excel to give audio messages after every 2 entries.

  #3   Report Post  
Posted to microsoft.public.excel.misc
MJB MJB is offline
external usenet poster
 
Posts: 6
Default Audio Queues (sp) in excel 2003

Hey Gary"s........!
I don't know enough about Office to know what you're describing- "VBA module"
event macro- they sound really cool but I'm an old gut that uses excel and
word somewhat but am totally lost otherwise-
Thanks
Mike

"Gary''s Student" wrote:

In a standard VBA module, enter this single line:

Public i As Integer

In the worksheet code area, enter the following event macro:

Private Sub Worksheet_Change(ByVal Target As Range)
i = i + 1
If i = 2 Then
i = 0
Application.Speech.Speak "two entries made"
End If
End Sub

--
Gary''s Student - gsnu200777


"MJB" wrote:

Is it possible to get excel to give audio messages after every 2 entries.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Audio file in Excel Maurice Excel Discussion (Misc queries) 1 October 3rd 07 06:25 PM
Attach audio clip to an Excel worksheet? Steve Excel Discussion (Misc queries) 0 November 1st 06 07:26 PM
Opening Excel and Audio Clip Mike Excel Discussion (Misc queries) 1 July 28th 06 07:35 PM
turn on audio in excel Linda Excel Discussion (Misc queries) 1 March 20th 06 05:04 PM
Any MP3 audio instructions on Excel Macros?? Jerry Kinder Excel Worksheet Functions 0 October 21st 05 03:12 AM


All times are GMT +1. The time now is 08:32 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"