Hi All,
Is there any vb code or macro to move from once cell to next row after 1 minute. Here I need to adjust the timings accordingly.
Regards
Sathish
Hi All,
Is there any vb code or macro to move from once cell to next row after 1 minute. Here I need to adjust the timings accordingly.
Regards
Sathish
Hi there,
You can use APPLICATION.ONTIME
E.g.:
For disabling:![]()
Sub SelectAnother() ActiveCell.Offset(1, 0).Select Application.OnTime Now() + TimeSerial(0, 1, 0), "SelectAnother" End Sub
Does it help?![]()
Sub StopSelecting() Application.OnTime Now() + TimeSerial(0, 1, 0), "SelectAnother", , False End Sub
Regards
Miroslav R.
(If You like my solutions, feel free to add reputation.)
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks