Which function joins two or more text strings into one text string? |
TEXT CONCATENATE COUNTIF SUMIF |
CONCATENATE |
The correct answer is option 2- CONCATENATE. CONCATENATE This function joins two or more text strings into one text string and its syntax is CONCATENATE (text1, text2,...) where text1, text2, …. are 2 to 255 text items to be joined into a single text item. The text items can be text strings, numbers, or single-cell references. Example combining First Name, Middle Name and Surname of the employees into Full Name using CONCATENATE Function.
OTHER OPTIONS
|