Complete the formula to join the text in cells A1 and B1 without any space.
=CONCATENATE(A1, [1])The CONCATENATE function joins text strings. To join A1 and B1, you must include B1 as the second argument.
Complete the formula to join the text in cells A1, B1, and C1 with a comma and space between each.
=JOIN([1], A1:C1)The JOIN function combines text with a delimiter. To separate with a comma and space, use ", ".
Fix the error in the formula to join cells A1 and B1 with a dash between them.
=CONCATENATE(A1, [1], B1)The dash must be a text string inside quotes "-" to be joined properly.
Fill both blanks to create a formula that joins cells A1 to A3 with a semicolon and space between each.
=JOIN([1], [2])
JOIN needs the delimiter first, here "; ", then the range A1:A3 to join those cells.
Fill all three blanks to create a formula that concatenates the uppercase of cell A1, a space, and the lowercase of cell B1.
=CONCATENATE([1](A1), [2], [3](B1))
Use UPPER(A1) to make uppercase, then a space " ", then LOWER(B1) for lowercase.