Chris Williamson
Board Regular
- Joined
- Oct 16, 2010
- Messages
- 83
Good evening guys,
When the "Speak on Enter" command is turned on, and you type the word "Hello" into cell A1.
Excel will say the word "Hello" out loud via your speakers, in a Stephen Hawkins type of voice.
However if you have a simple macro to insert the text "Hello" into cell A1.
The "Speak on Enter" command does not work.
How do you get the "Speak on Enter" command to work with the macro code?
When the "Speak on Enter" command is turned on, and you type the word "Hello" into cell A1.
Excel will say the word "Hello" out loud via your speakers, in a Stephen Hawkins type of voice.
However if you have a simple macro to insert the text "Hello" into cell A1.
Code:
Text1 = ("Hello")
Sheet1.Range("A1").Value = Text1
The "Speak on Enter" command does not work.
How do you get the "Speak on Enter" command to work with the macro code?