Formualizer Docs
ReferenceFunctionsText Functions

LOWER

Converts text to lowercase.

Summary

Converts text to lowercase.

Remarks

  • Uses ASCII lowercasing semantics in this implementation.
  • Numbers and booleans are first converted to text.
  • Errors are propagated unchanged.

Examples

Lowercase letters
Grid
CellValue
No inputs on Sheet1.
Formula
=
Result
Not evaluated yet.
Expected
data pipeline
Boolean coerced to text
Grid
CellValue
No inputs on Sheet1.
Formula
=
Result
Not evaluated yet.
Expected
true

FAQ

How are booleans handled by LOWER?

Inputs are coerced to text first, so TRUE/FALSE become lowercase string values.

Runtime metadata

Category

Text

Signature

LOWER(arg1: Any)

Arity

min 1, max 1

Arguments

arg1

Any · Scalar

Caps

PURE

Source

On this page