How do I set my excel to speak what is typed in a cell?
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?
|