Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

ALT+F11 insert module Sub PsikoNumGenerator() Randomize Timer theEnd = InputBox("Jumlah angka yang akan dibuat", "Jumlah Angka")

If Not IsNumeric(theEnd) Then Exit Sub If Int(theEnd) = 0 Then Exit Sub For i = 1 To theEnd theText = theText & vbTab & Int(Rnd(i) * 10) Next Selection.TypeText Text:=theText End Sub ALT+F8

You might also like