Hello,
I am looking for a bit of code to add into the below but I am struggling.
What it needs to do is say if the cell A1 is = to cell B4 then it needs to speak as per the below code. However this needs to loop constantly so everyday at the the shown in B4 it speaks aloud.
I have it working in principle just not looping or from the matching cells.
I am looking for a bit of code to add into the below but I am struggling.
What it needs to do is say if the cell A1 is = to cell B4 then it needs to speak as per the below code. However this needs to loop constantly so everyday at the the shown in B4 it speaks aloud.
I have it working in principle just not looping or from the matching cells.
VBA Code:
Sub SetTime()
SchedRecalc = Now + TimeValue("00:00:02")
Application.OnTime SchedRecalc, "Recalc"
Sheet1.Range("A26").Value = OK
Application.Speech.Speak ("Make Your Selection. Then press the enter button.")
End Sub