Hello!
Please advise me on the below scenario.
Plan:
I would like to prepare a questionnaire in Excel using VBA, One question for one sheet, probably 20 sheets will be there.
When the user start the test, a timer will be running on "A1", if the time value > 60(1 Minute) then it will go to the next question(Next sheet) automatically.
Sample Timer code:
Problem: When the timer is running, the user is not able to use the excel.
Could you please advise me how can I make the questionnaire with Timer in Excel?
Thank you!
Vargeesh
Please advise me on the below scenario.
Plan:
I would like to prepare a questionnaire in Excel using VBA, One question for one sheet, probably 20 sheets will be there.
When the user start the test, a timer will be running on "A1", if the time value > 60(1 Minute) then it will go to the next question(Next sheet) automatically.
Sample Timer code:
Code:
Sub StartTimer()
Dim Seconds As Integer
For Seconds = 1 To 10
Application.Wait (Now + TimeValue("0:00:01")) ' Wait for a second
Range("A1").Value = Seconds
Next Seconds
MsgBox "Ten Seconds Elapsed"
End Sub
Problem: When the timer is running, the user is not able to use the excel.
Could you please advise me how can I make the questionnaire with Timer in Excel?
Thank you!
Vargeesh