Joining Last name + First name
Combine last name and first name into one cell using &, CONCAT and TEXTJOIN, with UPPER/LOWER for formatting — 6 guided steps.
=cell & " " & cell
1 / 6
Join first name + space + last name
=B2&" "&A2
=CONCAT( … , " " , … )
2 / 6
Same thing with CONCAT
=CONCAT(B2," ",A2)
=UPPER(…) & " " & …
3 / 6
Format "LAST NAME First name" (last name in uppercase)
=UPPER(A2)&" "&B2
="Hello Mr. " & cell
4 / 6
Greeting line: "Hello Mr. Dupont"
="Hello Mr. "&A2
=TEXTJOIN( delimiter , ignore_empty , … )
5 / 6
Join Last name, First name and City with TEXTJOIN
=TEXTJOIN(", ",TRUE,A2,B2,C2)
=LOWER( … & "." & … & "@company.com" )
6 / 6
Build an email: firstname.lastname@company.com
=LOWER(B2&"."&A2&"@company.com")
Your score is
Restart