Forum Discussion
Hkan_Nilsson
Apr 26, 2022Copper Contributor
How can I turn off audio reading when I leave a cell with Enter
How can I turn off audio reading when I leave a cell with Enter
- Apr 26, 2022
Press Alt+F11 to activate the Visual Basic Editor.
Press Ctrl+G to activate the Immediate window.
Type or copy/paste the following line into the window:
Application.Speech.SpeakCellOnEnter = False
With the insertion point in that line, press Enter.
You can now close the Visual Basic Editor.
HansVogelaar
Apr 26, 2022MVP
Press Alt+F11 to activate the Visual Basic Editor.
Press Ctrl+G to activate the Immediate window.
Type or copy/paste the following line into the window:
Application.Speech.SpeakCellOnEnter = False
With the insertion point in that line, press Enter.
You can now close the Visual Basic Editor.
Hkan_Nilsson
Apr 26, 2022Copper Contributor
Thank you, this tips works fine for me.