Tiered commission
=COMMISSION(amount, tier) encapsulates nested IF thresholds sales reps use on every deal row.
A named function is a custom formula you define once and call by a friendly name in any cell. Google Sheets uses LAMBDA under the hood via Data > Named functions. Instead of repeating a long expression, you write =DISCOUNT(price, rate) everywhere. Named functions make templates readable and reduce copy-paste errors across tabs.
Use named functions when the same calculation appears in dozens of cells: tiered pricing, fiscal quarter labels, custom tax logic, or domain-specific scoring your team shares.
Skip named functions for one-off formulas or when built-in functions already cover the case. Over-abstracting simple math obscures audits.
Open Data > Named functions and create a name, argument list, and formula expression using LAMBDA.
{:"Call the function like a native function"=>"=MYFUNC(A2, B2) in the grid."}
Arguments map in order to parameters you defined in the LAMBDA signature.
Update the definition once in Named functions to change behavior workbook-wide.
Combine named functions with LET inside definitions when intermediate steps clarify logic.
Document argument units on a README tab so finance can validate the math.
=COMMISSION(amount, tier) encapsulates nested IF thresholds sales reps use on every deal row.
=FISCAL_MONTH(date) returns Apr-FY25 style strings for pivot groupings without repeating TEXT hacks.
Named function wraps FILTER and SORT so dashboard cells stay one line each.
Build this without starting from a blank cell
Use a Better Sheets tool for Named function, then watch a walkthrough when you want the full pattern.
Watch how Named function works
Every formula starts with = followed by a function name and arguments in parentheses. Ranges use A1 notation, text sits in quotes, and operators like + and & combine values. Sheets recalculates when inputs change, so syntax errors show as #NAME? or #ERROR! in the cell.
Read guide →ARRAYFORMULA tells Google Sheets to treat a formula as an array operation so one expression fills many cells at once. It is common with IF, VLOOKUP, and math on full columns before dynamic arrays made many patterns automatic. It still matters for legacy sheets and explicit control.
Read guide →Visual formulas are spreadsheet layouts where the formula output is meant to be seen, not just calculated: sparkline strips, emoji status icons, color scales, and REPT bars that communicate trend and health at a glance. They sit between raw numbers and full chart objects for dense dashboards.
Read guide →#NAME? means Google Sheets does not recognize a name in your formula. That can be a misspelled function, a named range that does not exist, text used without quotes, or a function name from the wrong language locale.
Read guide →Done reading about Named function?
Membership unlocks 636+ tutorials, unlimited generators, and every template. Practical lessons. Zero fluff.
Need this once
Jump to a free tool or a single tutorial for this topic.
Learning Sheets for real
Unlock the full library, generators, and templates with membership.