Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • How to Create Thermometer Chart in Excel
  • Create Scatter Chart in Excel
  • Get column name from index in Excel Table
  • How to conditionally sum numeric data in an Excel table using SUMIFS
  • How to Create Gantt Chart in Excel

References

  • Basic INDEX MATCH approximate in Excel
  • How to get last row in mixed data with blanks in Excel
  • LOOKUP function: Description, Usage, Syntax, Examples and Explanation
  • How to get relative row numbers in a range in Excel
  • MATCH function: Description, Usage, Syntax, Examples and Explanation

Data Validations

  • Excel Data validation unique values only
  • Excel Data validation date in specific year
  • Excel Data validation must contain specific text
  • Excel Data validation whole percentage only
  • Excel Data validation number multiple 100

How to create email address from name in Excel

by

To build email addresses using first and last names, you can use a formula that concatenates values, with help from the LOWER and LEFT functions as needed. See example below:

Formula

=LOWER(LEFT(first)&last)&"@domain.com"
How to create email address from name in Excel

Explanation

In the example shown, the formula in D5 is:

=LOWER(LEFT(C5)&B5)&"@"&"acme.com"

How this formula works

For a name like “Tim Brown”, this formula builds an email address like “tbrown@domain.com”.

First, the LEFT function is used to get the first letter from the first name in column C. Usually, the LEFT function gets a “num_chars” value for the second argument, but the argument is optional and defaults to 1 if omitted.

LEFT(C5) // get first character from first name

The first letter of the first name is then joined to the last name using the concatenation operator (&), and the result is wrapped in the LOWER function, which forces all text to lower case.

LOWER(LEFT(C5)&B5) // lower case

Finally, result is jointed again to “@” and then to the domain. The domain is kept separate for convenience only. The formula could be written like this:

With a named range

To simply the formula, you could create a named range “domain” to hold the domain name, then rewrite the formula like this:

=LOWER(LEFT(first)&last)&domain

Changing the value in the named range will then update all email addresses at once.

Post navigation

Previous Post:

DECIMAL function: Description, Usage, Syntax, Examples and Explanation

Next Post:

AVERAGE function: Description, Usage, Syntax, Examples and Explanation

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • IF with boolean logic in Excel
  • How to use Excel TRUE Function
  • How to use Excel AND Function
  • SWITCH function example in Excel
  • How to return blank in place of #DIV/0! error in Excel

Date Time

  • EOMONTH function: Description, Usage, Syntax, Examples and Explanation
  • Get first day of previous month in Excel
  • SECOND function: Description, Usage, Syntax, Examples and Explanation
  • Add years to date in Excel
  • Calculate years between dates in Excel

Grouping

  • Group times into 3 hour buckets in Excel
  • Group arbitrary text values in Excel
  • Group numbers with VLOOKUP in Excel
  • Group times into unequal buckets in Excel
  • If cell contains one of many things in Excel

General

  • How to calculate percent sold in Excel
  • How to get original number from percent change in Excel
  • Subtotal by invoice number in Excel
  • Print Excel Sheet In Landscape Or Portrait
  • How to generate random number between two numbers in Excel
© 2025 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning