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 Overflowformula - 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
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
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
How to use Left formula to extract text before a ":" character ?
=LEFT(A1,FIND(":",A1)-1) More on reddit.com
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)
01:46
How to remove characters from right in Excel - YouTube
03:11
Microsoft Excel Tips to Remove a Character from String (Left or ...
03:56
How to Remove a Character from Text in Excel Fast - YouTube
How to Remove Everything After A Specific Character In Excel - YouTube
04:06
How to Remove the Last Character from Strings in Excel - YouTube
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.
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.
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
Top answer 1 of 3
1
Use LEFT() with FIND and SUBSTITUTE to find the last /
=LEFT(A1,FIND("}}}",SUBSTITUTE(A1,"/","}}}",LEN(A1)-LEN(SUBSTITUTE(A1,"/","")))-1)
2 of 3
0
If you don't mind a bit of vba, then InStrRev was almost tailor made for cases like these:
Public Function Remove_After(ByVal what As String, ByVal where As Range) As String
Remove_After = Left(where, InStrRev(where, what) - 1)
End Function

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
