Rnd Function
SyntaxGroupRnd([Num])
MathDescription
Return a random number greater than or equal to zero and less than one.
Parameters Description Num See table below.
See Also
Num Description <0 Return the same number every time, using Num as the seed. >0 Return the next random number in the sequence. 0 Return the most recently generated number. omitted Return the next random number in the sequence.
Randomize
Sub Main Debug.Print Rnd() ' 0.?????????????? End Sub