Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks to Rocky for the following Macro to select and spin
a random number for a raffle. However, a couple of questions. Will the routine include 1 and 100 in the draw and secondly can any numbers be input ie, 87000 to 87500 Regards Michael Option Explicit Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) Sub SpinNumber() Dim X As Integer For X = 1 To 99 Range("I8") = Int((100 * Rnd) + 1) Sleep 10 Next X End Sub |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
To randomize range of numbers use it:
Sub SpinNumber_1() 'Int((up_number - down_number + 1) * Rnd + down_number) Dim X As Integer For X = 1 To 20 Range("I" & X) = Int((87500 - 87000 + 1) * Rnd + 87000) Sleep 10 Next X End Sub -----Original Message----- Thanks to Rocky for the following Macro to select and spin a random number for a raffle. However, a couple of questions. Will the routine include 1 and 100 in the draw and secondly can any numbers be input ie, 87000 to 87500 Regards Michael Option Explicit Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) Sub SpinNumber() Dim X As Integer For X = 1 To 99 Range("I8") = Int((100 * Rnd) + 1) Sleep 10 Next X End Sub . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Help! How do you get excel to find the x(changes daily, marked in a cell from another formula) highest numbers in a group of numbers and sum them up? | Excel Worksheet Functions | |||
Help! How do you get excel to find the x(changes daily, marked in a cell from another formula) highest numbers in a group of numbers and sum them up? | Excel Worksheet Functions | |||
to find missing serial numbers in randomly generated numbers | Excel Worksheet Functions | |||
Insert spinning button with time format in Excel 2000? | Excel Discussion (Misc queries) | |||
Spinning numbers | Excel Programming |