Complete the formula to join the text in cells A1 and B1 using CONCATENATE.
=CONCATENATE(A1, [1])The CONCATENATE function joins text from multiple cells. To join A1 and B1, you use B1 as the second argument.
Complete the formula to join text in A1 and B1 with a space between using CONCAT.
=CONCAT(A1, [1], B1)To add a space between joined texts, use " " (a space inside quotes) as the separator.
Fix the error in the formula to join A1 and B1 with a comma and space using CONCATENATE.
=CONCATENATE(A1, [1], B1)The separator should be a comma and space inside quotes: ", " to join text properly.
Fill both blanks to create a formula that joins A1, a dash, and B1 using CONCAT.
=CONCAT(A1, [1], [2])
The dash "-" is the separator, and B1 is the last text to join.
Fill all three blanks to create a formula that joins uppercase A1, a comma and space, and lowercase B1 using CONCATENATE.
=CONCATENATE([1], [2], [3])
Use UPPER(A1) to convert A1 to uppercase, ", " as separator, and LOWER(B1) to convert B1 to lowercase before joining.