C
cindee
Here's a simple 2-step answer:
First do a find an replace on the name:
find " " (space)
replace with "."
That'll give you Bill.Smith
Then do a concatenation to add on the @ and the xxx.com
like this:
=CONCATENATE(A1,"@","xxx.com") where A1 is Bill.Smith
Good luck.
First do a find an replace on the name:
find " " (space)
replace with "."
That'll give you Bill.Smith
Then do a concatenation to add on the @ and the xxx.com
like this:
=CONCATENATE(A1,"@","xxx.com") where A1 is Bill.Smith
Good luck.