Hi all,
I've found the following that will create a random letter
However, whenever I run this it always creates the same sequence of randomisation - 'S' 'O' 'P' 'I' etc.![]()
a = Chr(CInt(Rnd * 26) + 65)
My code is only run once each time, so I'm always getting S!
How do I really get true randomisation of a letter?
Bookmarks