Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I changed computers and don't remember how I set up the speak command on
Excel. I've looked in the help menu, but can't seem to find it. Can anybody advise? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Place your text in the cells in column A and run this tiny macro:
Sub Macro1() L = Cells(Rows.Count, "A").End(xlUp).Row For n = 1 To L Cells(n, 1).Speak Next n End Sub -- Gary''s Student - gsnu200903 "Blessed" wrote: I changed computers and don't remember how I set up the speak command on Excel. I've looked in the help menu, but can't seem to find it. Can anybody advise? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You first have to install the speech feature. Right-click in any button bar
and select Text To Speech. If it hasn't been installed, a message box will tell you so and ask if you want to install it. Follow directions from there. Once it's installed, copy the first macro below to the sheet module if you want this to work on only one sheet, or copy the second macro to the Workbook module if you want it to speak what you put in any cell in any sheet. HTH Otto Private Sub Worksheet_Change(ByVal Target As Range) If Target.Count 1 Then Exit Sub Application.Speech.Speak Target.Value End Sub Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range) If Target.Count 1 Then Exit Sub Application.Speech.Speak Target.Value End Sub "Blessed" wrote in message ... I changed computers and don't remember how I set up the speak command on Excel. I've looked in the help menu, but can't seem to find it. Can anybody advise? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Speak Cell | Setting up and Configuration of Excel | |||
how to get excel to speak to me | Setting up and Configuration of Excel | |||
How can I make Excel speak? | Setting up and Configuration of Excel | |||
I have typed in an excel cell and cannot advance to next cell by . | Excel Discussion (Misc queries) | |||
Excel merged cell - can it automatically expand as text is typed? | New Users to Excel |