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
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.
2 Replies
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_NilssonCopper ContributorThank you, this tips works fine for me.