Checks whether a value is text and returns the text if it is, or an empty string if it is not.
이 함수는 Google Sheets에서도 Excel과 동일하게 작동합니다 — 구문과 인수가 같습니다.
T(value)The T function is used to return the value if it is text, or an empty string if the value is not text. It is often used in formulas to ensure that a cell contains text, as it ignores numbers, logical values, and error values.
=T("Hello")결과: Hello
Since 'Hello' is a text string, the function returns it.
=T(123)결과:
Since 123 is a number, the function returns an empty string.
It returns an empty string when the input is not text, such as a number, date, or error value.