Skip to content

Instantly share code, notes, and snippets.

View robertPlace's full-sized avatar

Robert Place robertPlace

View GitHub Profile
@coccoinomane
coccoinomane / Excel Password Generator.md
Last active June 24, 2024 19:26
Copy this formula into an Excel cell to generate a random 9-character password

Copy this formula into an Excel cell to generate a random 9-character password. Then Copy & Paste Special (as value) in place in order to avoid the cell being continuosly re-evaluated.

English version

=CHAR(RANDBETWEEN(65;90))&CHAR(RANDBETWEEN(97;122))&CHAR(RANDBETWEEN(97;122))&CHAR(RANDBETWEEN(65;90))&RANDBETWEEN(1000;9999)&CHAR(RANDBETWEEN(42;43))

English version (with commas)