this code is not quite running but i will fix it tomorrow - I have indicated where I want the sound to go in the code
1 Randomize
10 num = (Int(100 * Rnd())) + 1
If num > 90 Then GoTo 1
If num < 1 Then GoTo 1
If num < 10 Then left1 = 1: right1 = num: GoTo 20
left1 = Left(num, 1)
right1 = Right(num, 1)
If right1 = 0 Then right1 = 10
20 Cells(20, 1) = left1
Cells(21, 1) = right1
Cells(22, 1) = num
If Cells(right1, left1) = "." Then GoTo 30 Else GoTo 1
30 Cells(right1, left1) = num
'I would like the value of num to be spoken here
End
End Sub