Formulas for

Generate Passwords

Data Generation1 credit/cellSheets · Excel
=VERVE("passwordgenerator", 10, 12, "strong")

Fill cells with strong passwords. Returns secure passwords by the row — Google Sheets or Excel.

It's one of 250+ live sources you reach with a single =VERVE() function — served from APIVerve's production data engine, billed at 1 credit per resolved cell, and refreshed on whatever cadence you set. No API keys to wrangle, no scripts, no exports.

A real example — the input you type, and the values you can pull from it. Click any cell to see the formula behind it.

passwordgenerator.xlsxsample data
D2fx
A
B
C
1
Count
Length
Complexity
2
10
12
strong
3
4
click any cell to see its formula1 credit / cell

One value per row

Fill =VERVE("passwordgenerator", 10, 12, "strong") down a column and Generate Passwords returns a result for every row — a batch of live values in a single drag, no code.

Enrich data in place

Add Generate Passwords beside a table you already have to append its output right where your data lives, then sort, filter, or chart on it.

Stays fresh on its own

Set the sheet to refresh on a schedule and the generate passwords values keep themselves current without anyone re-typing.

The same function works in both apps — install once, sign in with your key, and type it into any cell.

Google SheetsAdd-on

Install from the Workspace Marketplace, then drop the formula into a cell. Autocomplete suggests the source and its fields.

=VERVE("passwordgenerator", 10, 12, "strong")
Microsoft ExcelAdd-in

Same source, same arguments, same key — in Excel on desktop, the web, or mobile. Excel namespaces it as VERVE.CALL. Drag to fill a whole column.

=VERVE.CALL("passwordgenerator", 10, 12, "strong")

Tune the result by adding name=value before the field argument — in any order. Leave one out and its default applies.

  • type

    The kind of password to generate. random uses the complexity preset, pronounceable builds readable syllables, passphrase joins dictionary words, and custom honours the include/exclude switches below

    =VERVE("passwordgenerator", 10, 12, "strong", "type", "random")
  • includeNumbers

    Include digits. Applies to custom and pronounceable, and to random at simple complexity

    =VERVE("passwordgenerator", 10, 12, "strong", "includeNumbers", "true")
  • includeSymbols

    Include punctuation symbols. Applies to custom, and to random at medium complexity

    =VERVE("passwordgenerator", 10, 12, "strong", "includeSymbols", "true")
  • includeUppercase

    Include uppercase letters. Applies to custom, and to random at simple complexity

    =VERVE("passwordgenerator", 10, 12, "strong", "includeUppercase", "true")
  • includeLowercase

    Include lowercase letters in a custom password. Set false to build from the other character sets only

    =VERVE("passwordgenerator", 10, 12, "strong", "includeLowercase", "true")
  • excludeSimilar

    Exclude characters that are easy to confuse when read aloud or typed (i, l, 1, L, o, 0, O)

    =VERVE("passwordgenerator", 10, 12, "strong", "excludeSimilar", "true")
  • excludeAmbiguous

    Exclude brackets, slashes, quotes and other characters that need escaping in shells and config files

    =VERVE("passwordgenerator", 10, 12, "strong", "excludeAmbiguous", "true")
  • mixedCase

    Randomly capitalise letters in a pronounceable password

    =VERVE("passwordgenerator", 10, 12, "strong", "mixedCase", "true")
  • strict

    Guarantee at least one character from every enabled set rather than leaving it to chance

    =VERVE("passwordgenerator", 10, 12, "strong", "strict", "true")
  • wordCount

    How many words a passphrase contains. Only applies when type is passphrase

    =VERVE("passwordgenerator", 10, 12, "strong", "wordCount", "4")
  • separator

    The character placed between passphrase words. Only applies when type is passphrase

    =VERVE("passwordgenerator", 10, 12, "strong", "separator", "-")
  • capitalize

    Capitalise each word of a passphrase. Only applies when type is passphrase

    =VERVE("passwordgenerator", 10, 12, "strong", "capitalize", "true")
  • analyzePremium

    Return a strength analysis alongside each password

    =VERVE("passwordgenerator", 10, 12, "strong", "analyze", "true")

Add a field name as the last argument to land just that value in the cell.

  • Passwords
    =VERVE("passwordgenerator", 10, 12, "strong", "field", "passwords")
  • Passwords › Password
    =VERVE("passwordgenerator", 10, 12, "strong", "field", "passwords.0.password")
  • Passwords › Length
    =VERVE("passwordgenerator", 10, 12, "strong", "field", "passwords.0.length")
  • Passwords › Metadata
    =VERVE("passwordgenerator", 10, 12, "strong", "field", "passwords.0.metadata")
  • Passwords › Metadata › Type
    =VERVE("passwordgenerator", 10, 12, "strong", "field", "passwords.0.metadata.type")
  • Passwords › Metadata › ComplexityPremium
    =VERVE("passwordgenerator", 10, 12, "strong", "field", "passwords.0.metadata.complexity")
  • Passwords › AnalysisPremium
    =VERVE("passwordgenerator", 10, 12, "strong", "field", "passwords.0.analysis")
  • Count
    =VERVE("passwordgenerator", 10, 12, "strong", "field", "count")

Premium marks data included on paid plans. On the Free plan a marked field is withheld and a marked input is ignored — either way the cell reads #PREMIUM(name) instead of a value, so a gated answer can never be mistaken for a real one. Everything unmarked works on every plan. Compare plans

Generate Passwords, answered

Everything you need to wire it into a sheet.

How do I pull Generate Passwords into Google Sheets?
Install the VerveSheets add-on, sign in once with your key, and type =VERVE("passwordgenerator", 10, 12, "strong", "field", "passwords") into any cell. The "field" argument names the value you want back, so the cell resolves to a single number or string you can chart, sort, or feed into another formula.
What data can I pull from Generate Passwords?
Generate Passwords returns passwords, passwords.0.password, passwords.0.length, passwords.0.metadata and passwords.0.metadata.type, plus 1 more — name any one of them as the "field" argument and that value lands in the cell. Leave the field out and the whole record spills into a two-column table instead.
Can I narrow what Generate Passwords returns?
Yes — Generate Passwords takes "type", "includeNumbers", "includeSymbols" and "includeUppercase", plus 9 more as optional inputs. They go in as "name", value pairs after the required ones, in any order, so =VERVE("passwordgenerator", 10, 12, "strong", "type", "random") shapes the result without changing anything else.
Which Generate Passwords fields need a paid plan?
passwords.0.metadata.complexity and passwords.0.analysis are included from the Starter plan up. On the Free plan the cell returns #PREMIUM(field) rather than a wrong or empty value, so it's always obvious which one to upgrade for. Every other field works on Free.
Can I fill a whole column of Generate Passwords at once?
Yes. Put your count values down a column and point the formula at the range — A2:A50 instead of A2 — and one call returns a value for every row. Dragging the formula down works too, but the range form is a single billed call per column rather than one per cell.
How many credits does each Generate Passwords cell cost?
Each resolved cell costs 1 credit. A cell only re-bills when it actually refreshes, so a sheet you aren't touching doesn't keep charging.
Does Generate Passwords work in Excel as well as Google Sheets?
Yes — same arguments, same key, same fields. Excel namespaces custom functions, so the call is =VERVE.CALL() there and =VERVE() in Google Sheets; nothing else about it changes.

Put Generate Passwords in your next spreadsheet. Add the extension, paste the formula, and the cell keeps itself current.

Scaling up?

Volume pricing, custom SLAs, and dedicated support for high-traffic teams.

Contact sales