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
  • How To Perform and Interpret Regression Analysis in Excel
  • How to calculate current stock or inventory in Excel
  • Conditional Formatting Color Scales Examples in Excel
  • How to Create One and Two Variable Data Tables in Excel

References

  • Find closest match in Excel
  • Vlookup Examples in Excel
  • How to get first column number in range in Excel
  • How to use Excel COLUMN Function
  • How to get last row in numeric data in Excel

Data Validations

  • How To Create Drop-down List in Excel
  • Excel Data validation date in specific year
  • Excel Data validation must contain specific text
  • Excel Data validation must not contain
  • Excel Data validation must begin with

Extract middle name from full name — Manipulating NAMES in Excel

by

If you need to get the middle name from a full name, and you already have the first and last names in separate cells, you can use a formula that extracts the middle name using the MID and LEN functions, with help from TRIM function.

Note: this is a pretty sloppy formula, but will work in many situations because TRIM cleans up extra spaces, including the case where there is no middle name. It won’t work if the names contain titles or suffixes that occur before the first name or after the last name.

Formula

=TRIM(MID(name,LEN(first)+1,LEN(name)-LEN(first&last)))

Explanation

How this formula works

Assuming you have a full name in column B, a first name in column C, and a last name in column D, you can use a formula that looks like this:

=TRIM(MID(B5,LEN(C5)+1,LEN(B5)-LEN(C5&D5)))

At the core, the MID function extracts text from the full name starting at 1 character after the length of the first name. The total characters extracted is equal to the length of the full name minus the length of the first and last names put together.

By design, the formula extracts all text between the first name and the last name, including extra space characters, and then relies on the brute force of TRIM to clean everything up in the end:

1. When there is a middle name. MID gets the middle name (with space on either side) and TRIM removes the extra space.

2. When there is more than one middle name, MID gets all middle names (with space on either side) and trim strips the extra space characters.

3. When there is no middle name, it MID returns a space character, which is removed by TRIM, leaving nothing.

Post navigation

Next Post:

Create One-dimensional and Two-dimensional Array

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

  • Nested IF function example in Excel
  • Complete List of Excel Logical Functions, References and Examples
  • How to use Excel XOR Function
  • Check multiple cells are equal in Excel
  • How to use IFS function in Excel

Date Time

  • SECOND function: Description, Usage, Syntax, Examples and Explanation
  • Convert date to Julian format in Excel
  • NETWORKDAYS.INTL function: Description, Usage, Syntax, Examples and Explanation
  • Get days before a date in Excel
  • DATEVALUE function: Description, Usage, Syntax, Examples and Explanation

Grouping

  • Running count group by n size in Excel
  • Group times into unequal buckets in Excel
  • Group numbers with VLOOKUP in Excel
  • Calculate conditional mode with criteria in Excel
  • How to randomly assign data to groups in Excel

General

  • Zoom Worksheet in Excel
  • How to calculate percent of students absent in Excel
  • Count cells less than in Excel
  • How to test a range for numbers in Excel
  • AutoFit Column Width, AutoFit Row Height in Excel
© 2025 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning