speech function and variables

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I I have a macro that enters data into cells and want the data values to be
read back to me as I enter it. The SpeakonEnter doesn't work for this
because I'm not actually pressing 'Enter' - it's the macro putting the data
in. Is there a way to make this happen by using the speech.speak function
with a varible name after the function? Perhaps another way?
I can't seem to get it to work.
 
You can always "speak" text without or before entering it in a cell:

Sub talkum()
Application.Speech.Speak "hi there"
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top