Random Letter Generation in ExcelLast reviewed: November 30, 1994Article ID: Q65876 |
The information in this article applies to:
SUMMARYThe following formulas will generate random letters of the English alphabet when calculated:
Uppercase: =CHAR(TRUNC(RAND()*26)+65) Lowercase: =CHAR(TRUNC(RAND()*26)+97) Combination of above: =CHAR(TRUNC(RAND()*26)+TRUNC(RAND()*2)*32+65) |
KBCategory: kbusage
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |