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

  • Thread starter Thread starter Jody
  • Start date Start date
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!
 
Try
=LEFT(B1,7) & LEFT(A1,1) & "@dexterschools.org"

If this post helps click Yes
 
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
 
Back
Top