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

Data Analysis

  • Excel Line Chart
  • Conditional Formatting Data bars Examples in Excel
  • How to sum a total in multiple Excel tables
  • Get column index in Excel Table
  • How to create a Histogram in Excel

References

  • Find Closest Match in Excel Using INDEX, MATCH, ABS and MIN functions
  • Left Lookup in Excel
  • How to use Excel ROWS Function
  • Convert text string to valid reference in Excel using Indirect function
  • Extract all partial matches in Excel

Data Validations

  • Excel Data validation require unique number
  • Excel Data validation date in next 30 days
  • Excel Data validation don’t exceed total
  • Excel Data validation must not contain
  • Excel Data validation number multiple 100

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

  • TRUE function: Description, Usage, Syntax, Examples and Explanation
  • Excel If, Nested If, And/Or Criteria Examples
  • IFS function: Description, Usage, Syntax, Examples and Explanation
  • Complete List of Excel Logical Functions, References and Examples
  • Invoice status with nested if in Excel

Date Time

  • Calculate date overlap in days in Excel
  • EOMONTH function: Description, Usage, Syntax, Examples and Explanation
  • Get last working day in month in Excel
  • Sum through n months in Excel
  • How to calculate nth day of year in Excel

Grouping

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

General

  • Freeze and Unfreeze Panes in Excel
  • How to create dynamic named range with INDEX in Excel
  • Split Cell Content Using Text to Columns in Excel
  • Automatically fill series of cells in Excel using AutoFill
  • Count cells that do not contain errors in Excel
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning