Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Bertrand,
You could use the OnTime method to fire a macro that writes the random number to a cell or a variable once every six seconds or so. Run Random6 once manually, and it will keep going until you decide to stop it. I have chosen a 2 digit random number between 0 and 100 - you can change that easily. Dim DT As Date Sub Random6() DT = Now() + TimeValue("00:00:06") Application.OnTime DT, "Random6" Cells(Rows.Count, 1).End(xlUp)(2).Value = Round(Rnd() * 100, 2) End Sub Sub StopIt() Application.OnTime DT, "Random6", , False End Sub To stop it, use StopIt HTH, Bernie MS Excel MVP "Bertrand" wrote in message ... Is it possible to have a time delay on a random number. For example the random number refresh every x seconds. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do i refresh random numbers on windows vista | Excel Discussion (Misc queries) | |||
Time delay in displaying charts & chart names | Charts and Charting in Excel | |||
Time Delay for Macros | Excel Discussion (Misc queries) | |||
Long Time Delay To Paste From UserForm To Sheet | Excel Worksheet Functions | |||
How do I find random number in list of random alpha? (Position is. | Excel Discussion (Misc queries) |