-
test123
Sub procRandomNumbers()
Const INT_MAX_ZAHL = 1000
Randomize 'Zufallsgenerator initialisieren
For Each objCell In Selection
'Rnd erzeugt Zufallszahl >= 0 und < 1
objCell.Value = Int((INT_MAX_ZAHL * Rnd))
Next
End Sub
Log in to reply.
Sub procRandomNumbers()
Const INT_MAX_ZAHL = 1000
Randomize 'Zufallsgenerator initialisieren
For Each objCell In Selection
'Rnd erzeugt Zufallszahl >= 0 und < 1
objCell.Value = Int((INT_MAX_ZAHL * Rnd))
Next
End Sub
Log in to reply.
Please confirm you want to block this member.
You will no longer be able to:
Please allow a few minutes for this process to complete.