CHAR(N) for N = 65 to 90 will result in the characters A to ZCHAR(N) for N = 97 to 122 will result in the characters a to zCHAR(N) for N = 33 to 47 will result in the characters ! ” # $ % & ‘ ( ) * + , – . /CHAR(N) for N = 58 to 64 will result in the characters : ; < = > ? @CHAR(N) for N = 91 to 96 will result in the characters [ \ ] ^ _ `

In our example RANDBETWEEN(65,90) resulted in a value of 84 and CHAR(84) returns the character T.

How To Generate A Random Letter - 51