SOLVED

How can I turn off audio reading when I leave a cell with Enter

Copper Contributor

How can I turn off audio reading when I leave a cell with Enter

2 Replies
best response confirmed by VI_Migration (Silver Contributor)
Solution

@Hkan_Nilsson 

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.

Thank you, this tips works fine for me.
1 best response

Accepted Solutions
best response confirmed by VI_Migration (Silver Contributor)
Solution

@Hkan_Nilsson 

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.

View solution in original post