1. Extract employee name as plain text
| Employee ID | Name | Department | Hire Date | Salary | Status |
| 101 | Alice Smith | Sales | 2015-06-01 | 75000 | Active |
=T(B2)Result: Alice Smith
Cell B2 contains the text "Alice Smith". Because the argument is already text, T simply returns it unchanged. This is useful when you want to guarantee that a value is treated as a string in further concatenations. If B2 held a number, T would have returned an empty string instead.