If your email address is in a1 then this will work

=MID(A1,FIND("@",A1,1),LEN(A1)-FIND("@",A1,1)+1)

Answer from user844705 on Stack Overflow
🌐
Ablebits
ablebits.com › ablebits blog › excel › excel formulas › remove text before, after or between two characters in excel
Remove text before, after or between two characters in Excel
March 13, 2023 - So, we use the TRIM function to get rid of it. In case your values are separated with a variable number of delimiters, you may want to remove everything after the last instance of that delimiter.
Discussions

formula - How to remove all text from right after certain characters in excel - Stack Overflow
Sorry I'm a noob in excel and need help with this. Say I have the following text in my excel. ... I like to remove all the text from the right after the first occurrence "/" counting from the right. More on stackoverflow.com
🌐 stackoverflow.com
Please help with formula to remove characters after nth instance of specific character
Assuming your URL is a list that starts at cell A1, use the following formula: =IFERROR ( LEFT ( A1, FIND ( CHAR(1), SUBSTITUTE (A1, "/", CHAR(1), 4)) - 1),A1) Note that the "4" and "/" can be changed to whatever instance and character you want. The IFERROR formula takes the entire URL if it can't find that number of instances of that character. More on reddit.com
🌐 r/excel
22
18
November 22, 2019
Delete all characters before the beginning of sentences for all cells in a column
try replacing (Ctrl-H) *. with nothing (number of spaces after . as needed) More on reddit.com
🌐 r/excel
10
4
February 7, 2023
How to use Left formula to extract text before a ":" character ?
=LEFT(A1,FIND(":",A1)-1) More on reddit.com
🌐 r/excel
8
23
December 19, 2018
People also ask

How to remove text in excel by using find and replace function?
To efficiently remove unnecessary data in Excel, adhere to the following steps: First, select the cells containing the undesirable text. Then, access the find and replace dialog by simultaneously pressing Ctrl + H. Input the text you intend to replace within the "Find what" box and leave the "Replace with" box vacant. Finally, hit Enter.
🌐
wps.com
wps.com › blog › how-to-remove-characters-from-right-in-excel
How to Remove Characters from Right in Excel (An Easy Way)
How to extract substring of a certain length?
In Microsoft Excel, there are three functions to extract text of a defined length from cells. Depending on your starting point, consider these formulas: LEFT function: Extracts a substring from the left. RIGHT function: Extracts text from the right. MID function: Extracts a substring from the middle of a text string, commencing at your designated point.
🌐
wps.com
wps.com › blog › how-to-remove-characters-from-right-in-excel
How to Remove Characters from Right in Excel (An Easy Way)
🌐
Excel Tip
exceltip.com › home › excel text formulas
How to Remove Characters From Right in Excel - Excel Tips
September 3, 2021 - Check out how to Remove Characters From Right in Excel. To remove characters from right of function we will use LEFT and LEN function.
🌐
Excel X
excelx.com › home › excel formula to remove characters from right
Excel Formula to Remove Characters From Right | Excelx.com
April 29, 2024 - The best method depends on what you want to remove: Fixed Number: Use LEFT with LEN(A1)-N for consistent character removal. Specific Character: Utilize LEFT with FIND(character, A1, 1)-1 to target everything after ...
🌐
Exceljet
exceljet.net › home › formulas › remove characters from right
Remove characters from right - Excel formula | Exceljet
May 16, 2025 - We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts. To remove a trailing slash ("/") from a URL or path, you can use a formula based on the LEFT and LEN functions.
🌐
Ablebits
ablebits.com › ablebits blog › excel › excel formulas › excel: remove first or last characters (from left or right)
Excel: Remove first or last characters (from left or right)
March 13, 2023 - Also, to add preceeding zeros to make the number 11 digits. I need it to do this to a column in my excell sheet ... Hello! To extract the 11 characters from the right, use the RIGHT function.
Find elsewhere
🌐
Trump Excel
trumpexcel.com › home › how to remove text before or after a specific character in excel
How To Remove Text Before Or After a Specific Character In Excel
August 29, 2020 - Flash Fill is a tool that was introduced in Excel 2013 and is available in all the versions after that. It works by identifying patterns when you manually enter the data and then extrapolated to give you the data for the entire column. So if you want to remove the text before or after a specific character, you just need to show flash fairy what the result would look like (by entering it manually a couple of times ), and flash fill would automatically understand the pattern and give you the results.
🌐
ExcelDemy
exceldemy.com › home › excel formulas › excel remove characters from right (5 ways)
Excel Remove Characters From Right (5 ways) - ExcelDemy
May 31, 2024 - Repeat the process to extract the order number from column C into column E. You need to manually input the digits in E4 and use Flash Fill. After Flash Fill, the right characters of the rest of the cells will be removed.
🌐
Got It AI
got-it.ai › solutions › excel-chat › excel-tutorial › text › remove-characters-from-right
Remove characters from right - Excel formula
February 4, 2019 - Figure 4. Output: Remove characters from right using LEFT and LEN · Most of the time, the problem you will need to solve will be more complex than a simple application of a formula or function. If you want to save hours of research and frustration, try our live Excelchat service!
🌐
WPS Office
wps.com › blog › how-to-remove-characters-from-right-in-excel
How to Remove Characters from Right in Excel (An Easy Way)
June 1, 2026 - Alternatively, use the shortcut CTRL + E. Flash Fill will remove right characters based on the established pattern. ... Use Word, Excel, and PPT for FREE, No Ads.
🌐
GeeksforGeeks
geeksforgeeks.org › excel › how-to-remove-text-before-or-after-a-specific-character-in-excel
How to Remove Text Before or After a Specific Character in Excel - GeeksforGeeks
July 23, 2025 - This will erase the specified text from the cell. Removing everything after a specific character in Excel, such as a comma, is a common data-cleaning task. You can achieve this using the LEFT and SEARCH functions together.
🌐
Quora
quora.com › How-do-I-delete-a-text-before-or-after-a-specific-character-from-cells-in-Excel
How to delete a text before or after a specific character from cells in Excel - Quora
Use one of these methods depending on whether you want to remove text before (left of) or after (right of) a specific character. Below are compact formulas that work in modern Excel (with dynamic arrays) and legacy Excel; examples assume the source text is in A2 and the target character is ...
🌐
Spreadsheet Planet
spreadsheetplanet.com › home › how to remove text after a specific character in excel?
Remove Text after a Specific Character in Excel (3 Easy Methods)
July 20, 2020 - Thus we get all the characters in A2 from leftmost character to the character before the ‘@’ symbol! Also read: How to Remove Question Marks from Text in Excel? Finally, if you’re comfortable with VBA and want to get your job done quickly through a macro, this is a great method for you. Here’s the code we will be using. You can select and copy it: Sub remove_text_after_char() Dim rng As Range Dim cell As Range Set rng = Application.Selection For Each cell In rng cell.Offset(0, 1).Value = Left(cell, InStr(cell, "@") - 1) Next cell End Sub
🌐
ExcelDemy
exceldemy.com › home › excel formulas › how to remove text after character in excel: 4 easy ways
How to Remove Text After Character in Excel: 4 Easy Ways - ExcelDemy
May 23, 2024 - Select the macro “remove_text_after_character” > click Run. After running the code, you will get the desired result in the adjacent right column. ... You can download the workbook from here.
🌐
MyExcelOnline
myexcelonline.com › home › how to remove character from string in excel (left or right)
How to Remove Character from String in Excel (Left or Right) | MyExcelOnline
January 8, 2026 - ... The SUBSTITUTE function can replace occurrences of a specified substring within a text string with new text. To remove a character, you can substitute it with an empty string (“”).
🌐
Excel Insider
excelinsider.com › home › our blog › excel pro tips › how to remove everything after a character in excel (4 methods)
How to Remove Everything after a Character in Excel (4 Methods) - Excel Insider
July 29, 2025 - Press Ctrl + H on your keyboard to open the Find and Replace dialog box. ➤ In the “Find what” field, type @* to indicate “find the @ symbol and everything after it.” ➤ Leave the “Replace with” field completely blank.
🌐
YouTube
youtube.com › watch
Remove Data Before or After a Specific Character in Excel - With or Without Formula - YouTube
👍👍If you have found this content useful and want to show your appreciation, please use this link to buy me a beer 🍺. https://www.paypal.com/donate/?hoste...
Published   December 14, 2021
🌐
Exceldome
exceldome.com › home › solutions › remove characters from right | excel, vba
Remove characters from right | Excel, VBA
August 15, 2018 - 'apply the formula to remove four characters from the right ws.Range("D5") = Left(ws.Range("B5"), Len(ws.Range("B5")) - ws.Range("C5"))