t
Return text values unchanged; non-text values become empty.
Syntax
Section titled “Syntax”v = t(value)Description
Section titled “Description”If value is text, returns it unchanged. If it’s any other type (number, logical, etc.), returns an empty string. Used in Excel formulas to coerce mixed-type cells.
Examples
Section titled “Examples”t('hello') % 'hello't(42) % ''