Last active
October 19, 2022 05:53
-
-
Save gdmcdonald/22e4ca10d2b6fc4b43e829d0e2d60e0f to your computer and use it in GitHub Desktop.
Create six character alphanumeric random code in excel (lowercase only)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=CONCAT( | |
CHAR(48+MOD(RANDBETWEEN(49,84),75)), | |
CHAR(48+MOD(RANDBETWEEN(49,84),75)), | |
CHAR(48+MOD(RANDBETWEEN(49,84),75)), | |
CHAR(48+MOD(RANDBETWEEN(49,84),75)), | |
CHAR(48+MOD(RANDBETWEEN(49,84),75)), | |
CHAR(48+MOD(RANDBETWEEN(49,84),75)) | |
) |
Author
gdmcdonald
commented
Oct 19, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment