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 (e-mail address removed)

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top