Thread
:
random integer problem.
View Single Post
#
2
Posted to microsoft.public.excel.programming
jase[_2_]
external usenet poster
Posts: 29
random integer problem.
using VBA I use the following function
Public Function RandomNumber(ByVal minX As Integer, ByVal maxX As
Integer) As Integer
Randomize
RandomNumber = Int((maxX - minX) * Rnd()) + minX
End Function
Reply With Quote
jase[_2_]
View Public Profile
Find all posts by jase[_2_]