Thread
:
Guess my number game.
View Single Post
#
2
Posted to microsoft.public.excel.programming
merjet
external usenet poster
Posts: 812
Guess my number game.
I suggest a Command Button to reset the number. You can use something
like the following to generate the number:
Private Sub CommandButton1_Click()
Sheets("Sheet1").Range("A1") = Int(1 + 100 * Rnd())
End Sub
Hth,
Merjet
Reply With Quote
merjet
View Public Profile
Find all posts by merjet