Filter nilai teks saja
=T(value)
| Parameter | Deskripsi |
|---|---|
value |
The value to return as text. |
The T function returns text when given a text value and an empty string ("") for numbers, dates, and the logical values TRUE and FALSE. For example:
=T("apple") // returns "apple"
=T("NASA") // returns "NASA"
=T(100) // returns ""
=T(FALSE) // returns ""
Errors are not affected by the T function:
=T(3/0) // returns #DIV/0!
=T("#N/A") // returns #N/A