I need to take partial information from two columns and then add t

J

Jody

I have first name and last name columns in an excel spreadsheet. I need to
form a new column combining up to the first 7 letters of last name and the
first letter of first name and follow all by @dexterschools.org to compile
email addresses.

Can anyone help me with the formula for this?

Example:

First Name Last Name Email Address

Jody Malbon [email protected]

Thanks!
 
J

Jacob Skaria

Try
=LEFT(B1,7) & LEFT(A1,1) & "@dexterschools.org"

If this post helps click Yes
 
M

Milan Bortel

Hi,

think about using function LOWER (converts all letters to lowercase)

So, all in one ->

=LOWER(LEFT(B1,7) & LEFT(A1,1) & "@dexterschools.org")

Best wishes,

--
Milan Bortel

MCAS, MCTS
GOPAS Computer Training Center
Brno, Czech Republic
 
Top