Rnd Function
Syntax:
Rnd([Num])
Group:
Math
Description:
Return a random number greater than or equal to zero and less than one.
Parameter
Description
Num This
number value is ignored.
See
Also: Randomize.
Example:
Sub Main
Debug.Print Rnd() ' 0.??????????????
End Sub