I want to get a number between 65 and 90 (ascii A-Z) I'm using the following but it aint working.
VB Code:
  1. For z = 1 To 4
  2.         Randomize
  3.         Num = Round(Rnd * 218 + Rnd * 2, 0)
  4.         blncontinue = True
  5.         While blncontinue = True
  6.           Cool = Num
  7.           If Cool < 65 And Not Cool > 90 Then 'This is where I need help please
  8.             Randomize
  9.             Num = Round(Rnd * 218 + Rnd * 2, 0)
  10.           Else
  11.             blncontinue = False
  12.           End If
  13.         Wend
  14.         randomString = randomString & Chr(Num)
  15.       Next z