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

Data Analysis

  • Conditional Formatting Icon Sets Examples in Excel
  • How To Remove Duplicates In Excel Column Or Row?
  • How to count table columns in Excel
  • Everything about Charts in Excel
  • What-If Analysis: Scenarios and Goal Seek in Excel

References

  • How to use Excel MATCH Function
  • How to get address of first cell in range in Excel
  • Multi-criteria lookup and transpose in Excel
  • How to use Excel ROWS Function
  • Two-way lookup with VLOOKUP in Excel

Data Validations

  • Excel Data validation unique values only
  • Excel Data validation no punctuation
  • Prevent invalid data entering in specific cells
  • How To Create Drop-down List in Excel
  • Excel Data validation specific characters only

Extract word that begins with specific character in Excel

by

To extract words that begin with a specific character, you can use a formula based on six functions: TRIM, LEFT, SUBSTITUTE, MID, LEN, and REPT. This approach is useful if you need to extract things like a Twitter user name from a cell that contains other text.

Formula

=TRIM(LEFT(SUBSTITUTE(MID(text,FIND("@",
txt),LEN(text))," ",REPT(" ",100)),100))

Note: 100 represents the longest word you expect to find that begins with the special character. Increase or decrease to suit your needs.

Explanation

In the example shown, the formula in C5 is:

=TRIM(LEFT(SUBSTITUTE(MID(B5,FIND("@",
B5),LEN(B5))," ",REPT(" ",100)),100))

How this formula works

Starting from the inside out, the MID function is used to extract all text after “@”:

MID(B5,FIND("@",B5),LEN(B5))

The FIND function provides the starting point, and for total characters to extract, we just use LEN on the original text. This is a bit sloppy, but it avoids having to calculate the exact number of characters to extract. MID doesn’t care if this number is bigger than the remaining characters,  it simply extracts all text following “@”.

Next, we “flood” the remaining text with space characters, by replacing any single space with 100 spaces using a combination of SUBSTITUTE and REPT:

SUBSTITUTE("@word and remaining 
text"," ",REPT(" ",100))

This seems crazy, but the logic becomes clear below.

Next, to extract just the word we want (i.e. @word), we use LEFT to extract the first 100 characters from the left. This gets us “@word”, plus many extra spaces. To visualize, the hyphens below represent spaces:

@word———————

Now we just need to remove all extra spaces. For that, we use the TRIM function.

 

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

  • How to use Excel AND Function
  • IFS function: Description, Usage, Syntax, Examples and Explanation
  • Return blank if in Excel
  • OR function Examples in Excel
  • SWITCH function example in Excel

Date Time

  • How to get workdays between dates in Excel
  • How to get Weekdays, Working days between Two Dates in Excel
  • Assign points based on late time in Excel
  • Convert text to date in Excel
  • ISOWEEKNUM function: Description, Usage, Syntax, Examples and Explanation

Grouping

  • Group numbers with VLOOKUP in Excel
  • Group numbers at uneven intervals in Excel
  • Group times into unequal buckets in Excel
  • Group arbitrary text values in Excel
  • How to randomly assign data to groups in Excel

General

  • Basic numeric sort formula in Excel
  • Find Most Frequently Occurring Word in Excel Worksheet
  • Transpose: Switch ‘Rows to Columns’ or ‘Columns to Rows’ in Excel
  • Share Excel data with Word documents
  • Convert column number to letter in Excel
© 2025 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning