Let's suppose now it is 11h11min. It reads "ONE ONE" hours and "eleven" minutes, as in:
Sub TEST1()
Application.Speech.Speak "It is " & Hour(Now()) & " hours and " & Minute(Now()) & " minutes"
End Sub
However, the following reads "eleven" hours and "eleven" minutes
Sub TEST2()
Application.Speech.Speak "It is 11 hours and 11 minutes"
End Sub
On the contrary, it reads "ONE ONE" hours and "eleven" minutes, as in:
Sub TEST3()
Application.Speech.Speak "It is " & "11" & " hours and " & "11" & " minutes"
End Sub
How can I get it to read these numbers as words?