๐ŸŒ
Ablebits
ablebits.com โ€บ ablebits blog โ€บ excel โ€บ excel formulas โ€บ how to remove text or character from cell in excel
How to remove text or character from cell in Excel
March 10, 2023 - ... I need to remove the last digits ... using formulas. To extract all the text before a specific character, you can use the Excel TEXTBEFORE function....
Discussions

Deleting specific parts of text in multiple cells
="[ "&TEXTJOIN(" ] [ ",,TRIM(TEXTBEFORE(TEXTAFTER(TRIM(TEXTSPLIT(A1,"[",,TRUE)),")"),"]")))&" ]"

If A1 contains [ (1) Apple ] [ (2) Banana ]

It is converted to [ Apple ] [ Banana ]

More on reddit.com
๐ŸŒ r/excel
24
7
January 28, 2023
How do I delete part of the text from every cell?
u/Zsu17 - Your post was submitted successfully. Once your problem is solved, reply to the answer(s) saying Solution Verified to close the thread. Follow the submission rules -- particularly 1 and 2. To fix the body, click edit. To fix your title, delete and re-post. Include your Excel version and all other relevant information Failing to follow these steps may result in your post being removed without warning. I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns. More on reddit.com
๐ŸŒ r/excel
6
1
June 29, 2022
Is there a way to remove letters from a cell--while leaving the spaces intact?

u/chriscasemart - Your post was submitted successfully.

  • Once your problem is solved, reply to the answer(s) saying Solution Verified to close the thread.

  • Follow the submission rules -- particularly 1 and 2. To fix the body, click edit. To fix your title, delete and re-post.

  • Include your Excel version and all other relevant information

Failing to follow these steps may result in your post being removed without warning.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

More on reddit.com
๐ŸŒ r/excel
15
2
December 18, 2022
Remove text leave numbers

If it's really everything to the left of the first space we encounter, try this:

=IFERROR(--LEFT(A2,FIND(" ",A2)-1),"")

If we won't always / reliably have a space to trigger on, the following will pull everything to the left of the first letter we encounter:

=IFERROR(--TRIM(LEFT(A2,MIN(FIND({"a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"},LOWER(A2)&"abcdefghijklmnopqrstuvwxyz"))-1)),"")

Both formula options assume info in A (starting A2). Put in B2 and copy down as needed.

If you're not on the new array engine, submit the second formula with CSE (Ctrl Shift Enter) instead of just Enter like usual.

More on reddit.com
๐ŸŒ r/excel
6
1
December 7, 2020
๐ŸŒ
Excel Insider
excelinsider.com โ€บ home โ€บ our blog โ€บ excel pro tips โ€บ how to remove specific text from cell in excel (5 effective ways)
How to Remove Specific Text from Cell in Excel (5 Effective Ways) - Excel Insider
February 1, 2026 - Removing specific text from Excel cells is simple and efficient with the right approach. Use Find & Replace, LEFT+FIND formula, Flash Fill, and VBA Macro as these methods can clean your data quickly by removing specific text.
๐ŸŒ
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 - ... Drag the formula down the column to apply it to other rows in the dataset. ... In Excel, you can remove everything before the nth occurrence of a specific character by using a combination of functions like RIGHT, SUBSTITUTE, and FIND.
๐ŸŒ
Statology
statology.org โ€บ home โ€บ excel: how to remove specific text from cells
Excel: How to Remove Specific Text from Cells
February 4, 2022 - We can type this formula into cell B2 and then copy and paste it down to every remaining cell in column B: Notice that the โ€œrโ€ has been removed from every position name. Suppose we have the following column in Excel that shows the username for 10 different people on some website: Suppose we want to remove the following specific text ...
๐ŸŒ
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 - The tutorial looks at how to delete everything before/after a specific character or between two characters by using Excel formulas, custom function, Find and Replace, or a special tool.
๐ŸŒ
ExcelDemy
exceldemy.com โ€บ home โ€บ excel formulas โ€บ how to remove specific text from cell in excel (easiest 11 ways)
How to Remove Specific Text from Cell in Excel (Easiest 11 Ways) - ExcelDemy
June 21, 2024 - Select Cell E5. Use the following formula. ... D5 is the text, LEN(D5) is the total length of the string FIND("-", D5,1) will give the position of character โ€œ-โ€ and then the value will be deducted from the total length of the string and it will be the number of characters for the RIGHT function. Press Enter. Drag down the Fill Handle tool. You will get only the names of the colors as below. Read More: How to Remove Text before a Space with Excel Formula
Find elsewhere
๐ŸŒ
Exceljet
exceljet.net โ€บ home โ€บ formulas โ€บ remove text by matching
Remove text by matching - Excel formula | Exceljet
December 23, 2020 - To remove text from a cell based by matching content (not location), you can use the SUBSTITUTE function. In the example shown, the formula in C6 is: =SUBSTITUTE(B6,"-","")
๐ŸŒ
The Bricks
thebricks.com โ€บ home โ€บ resources โ€บ how to remove part of text in a cell in excel formula
How to Remove Part of Text in a Cell in Excel Formula - Bricks
February 20, 2025 - " Ltd." is the section of text we want to remove (note the leading space to avoid leaving extra spaces). "" tells Excel to replace " Ltd." with nothing, effectively deleting it. You can then drag this formula down the column to clean all the names. The function ignores cells where " Ltd." is not present, like "Beta Corp", leaving them unchanged. What if you need to remove characters from a specific, fixed position in every cell?
๐ŸŒ
MyExcelOnline
myexcelonline.com โ€บ home โ€บ how to remove text and characters from cells in excel fast
How to Remove Text and Characters from Cells in Excel Fast | MyExcelOnline
February 4, 2026 - To remove text before or after a specific character in Excel, use the following formula: =LEFT(A1, FIND("character", A1) - 1) to remove text after a character. Replace โ€œcharacterโ€ with the specific character.
๐ŸŒ
Automate Excel
automateexcel.com โ€บ home โ€บ excel ๋ฐ google ์Šคํ”„๋ ˆ๋“œ์‹œํŠธ์˜ ์…€์—์„œ ํŠน์ • ํ…์ŠคํŠธ ์ œ๊ฑฐํ•˜๊ธฐ
Remove Specific Text From a Cell in Excel & Google Sheets - Automate Excel
February 7, 2023 - We can remove any other character or text from the main text string by replacing the hyphen sing (โ€œ-โ€œ) in the formula with that character or text. We can also remove more than one character from the text by nesting SUBSTITUTE functions.
๐ŸŒ
Arab Psychology
scales.arabpsychology.com โ€บ home โ€บ how to easily remove specific text from cells in excel
How To Easily Remove Specific Text From Cells In Excel
November 30, 2025 - By creating a helper column using a formula like `=ISNUMBER(FIND(โ€œunwanted textโ€, A2))`, Excel returns `TRUE` for every cell in Column A that contains the specified โ€œunwanted text.โ€ The user can then apply a filter to the entire dataset ...
๐ŸŒ
ExtendOffice
extendoffice.com โ€บ excel tips โ€บ excel formulas โ€บ remove text from cell by matching the content
Remove text from cell by matching the content
Remove text by matching a content ... in Excel ... Text_string: The text string that containing the specific text you want to remove. It can be: ... Text_to_remove: The text you want to remove from a specific cell. It can be: ... As the below screenshot shown, each cell in range B5:B9 contains SSN numbers, and now you want to remove all dashes from SSN number in each cell. You can do as follows. ... 2. Enter the below formula into it and ...
๐ŸŒ
Exceljet
exceljet.net โ€บ home โ€บ formulas โ€บ remove text by position
Remove text by position - Excel formula | Exceljet
May 14, 2024 - To remove text from a cell by position, you can use the REPLACE function. In the example shown, the formula in C6 is: =REPLACE(B6,1,24,"") which replaces the first 24 characters in the text with an empty string ("").
๐ŸŒ
YouTube
youtube.com โ€บ watch
Excel Remove Specific Text From Cell | specific string | Specific Characters - YouTube
Link to the Excel file: https://agrimetsoft.com/excelExcel Tutorial YouTube: https://bit.ly/34TTYcp#Excel Remove Specific #Text From #Cell | specific #string
Published: April 10, 2021
๐ŸŒ
Excel X
excelx.com โ€บ home โ€บ excel formula to remove characters from left
Excel Formula to Remove Characters From Left | Excelx.com
July 15, 2023 - Description: The REPLACE function in Excel replaces part of a text string with a different text string, based on the number of characters you specify. Syntax: REPLACE(old_text, start_num, num_chars, new_text) ... I hope this blog post has helped ...
๐ŸŒ
ExtendOffice
extendoffice.com โ€บ home โ€บ office tips โ€บ excel tips
How to remove texts before or after a specific character from cells in Excel?
November 12, 2024 - This article introduces different methods of removing texts before or after a specific character or the nth occurrence character from cells in Excel. Method A: Delete texts before or after specific character by Find and Replace Method B: Delete texts before or after the first or last specific character by formula Method C: Delete texts before or after the nth occurrence character by formula Method D: Remove texts before/after a specific character with Kutools for Excel
๐ŸŒ
Exceljet
exceljet.net โ€บ home โ€บ formulas โ€บ remove unwanted characters
Remove unwanted characters - Excel formula | Exceljet
March 2, 2023 - To remove specific unwanted characters in Excel, you can use a formula based on the SUBSTITUTE function. In the example shown, the formula in C4 is: =SUBSTITUTE(B4,CHAR(202),"") Which removes a series of 4 invisible characters at the start of ...