I do not have enough rep to add comment, that is why I am writing as answer. Did you consider using text to column function? After selecting whole column, go to "Data" tab, there is a function called Text to Column. In that you can simply select "Delimited" and then in the next screen you can input ":" as other delimiter.

Answer from Dubison on Stack Overflow
🌐
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.
🌐
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 - On the Ablebits Data tab, in the Text group, click Remove > Remove by Position. On the add-in's pane, select the target range, specify how many characters to delete, and hit Remove.
Discussions

excel - I want to remove text to the right of a single character in a text string - Stack Overflow
If you want to remove the spacing add trim(): ... The first formula doesn't work consistently because you are defining the number of characters required (to the right) by the position of the : from the left - what happens if Text in A1 = Myname:Abe ? More on stackoverflow.com
🌐 stackoverflow.com
Need to remove the furthest right character but leave the rest from a column in a new column
"=Left(A1,Len(A1)-1)" should remove the last character of the cell. Then you can copy the formula down. More on reddit.com
🌐 r/excel
11
4
November 3, 2016
Can RIGHT/LEFT be used to remove entire words in a string?
You may wish to use Data -> Text to Columns delimited on space and then delete the first column if required. More on reddit.com
🌐 r/excel
44
72
July 20, 2024
Tip for beginners: Remove first & last characters from text
You might be familiar with the LEFT & RIGHT functions, which always take a fixed number of characters from the left or right side of a piece of... More on techcommunity.microsoft.com
🌐 techcommunity.microsoft.com
3
0
May 9, 2024
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)
🌐
Exceldashboardschool
exceldashboardschool.com › home › formulas › remove characters from right
How to Remove Characters From Right in Excel? - Excel Dashboard School
November 8, 2024 - Use the DataXL Productivity Suite for Excel and follow the steps below: Locate the DataXL tab on the ribbon. Select the cell that contains the text. Click on the Text Tools icon. A new window will appear. Select the second tab, Delete. Enter the value. Example: To remove the last six characters from the right, use “6” as a parameter.
🌐
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. Edit PDF files with the powerful PDF toolkit. Microsoft-like interface. Easy to learn. 100% Compatibility.
🌐
Exceljet
exceljet.net › home › formulas › remove characters from right
Remove characters from right - Excel formula | Exceljet
May 16, 2025 - To remove the last character(s) from a text string, you can use a formula based on the LEFT and LEN functions. In the worksheet shown above, each city and country in column B ends with an asterisk (*) that we would like to remove.
🌐
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 - We only want specific parts of the weight values in column B. In order to obtain only the numeric values and remove succeeding characters from the right, we use the VALUE, LEFT and LEN functions.
Find elsewhere
🌐
ExtendOffice
extendoffice.com › excel tips › excel formulas › excel formula:remove from right of text
Excel Formula:Remove from right of text
Remove text from the right side of a string in Excel using formulas, simplifying text manipulation for more precise data formatting and organization.
🌐
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.
🌐
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 - If you need to remove characters from the beginning or end of a string, you can use the =RIGHT(A2, LEN(A2) – 1) formula to remove the first character from the left, or the =LEFT(A2, LEN(A2) – 1) formula to remove the last character from ...
🌐
Got It AI
got-it.ai › solutions › excel-chat › excel-tutorial › text › remove-characters-from-left
Remove characters from left side of a cell - Excel formula
January 21, 2019 - There is an alternative solution to remove characters from the left side using the RIGHT and LEN functions. Let us follow these steps: Step 1. Select cell E4 · Step 2. Enter the formula: =RIGHT(C4,LEN(C4)-D4) ... Step 4: Copy the formula in cell E4 to cells E5:E7 by clicking the “+” icon at the bottom-right corner of cell E4 and dragging it down · Our formula extracts a substring from the right side of the text in C4.
🌐
Excel X
excelx.com › home › excel formula to remove characters from right
Excel Formula to Remove Characters From Right | Excelx.com
April 29, 2024 - LEFT(A1, …): This extracts characters from the beginning of the text string in cell A1 up to, but not including, the position of the last delimiter (found in step 2). -1: This subtracts 1 from the position of the last delimiter to exclude it from the final result. For complex scenarios or repetitive tasks, VBA automation can streamline the process. Here’s a basic VBA example: ... Sub sbXL_RemoveCharactersFromRight() 'Created by Excelx.com 'Removes 3 Characters from Right Call RemoveLastCharacters(3) End Sub Sub RemoveLastCharacters(numChars As Integer) 'Remove Characters from Right 'numChars=Number of Characters to Remove 'Created by Excelx.com Dim cell As Range For Each cell In Selection cell.Value = Left(cell.Value, Len(cell.Value) - numChars) Next cell End Sub
🌐
Reddit
reddit.com › r/excel › can right/left be used to remove entire words in a string?
Can RIGHT/LEFT be used to remove entire words in a string? : r/excel
July 20, 2024 - Insert a column to the right of your data, and type only the word you want to retain from the cell to the left and hit enter, then hit CTRL+E and it will do the same for the remaining rows. ... This is the best answer here. Flash Fill was designed exactly for the sort of issue you are having, ...
🌐
YouTube
youtube.com › watch
How to remove characters from right in Excel - YouTube
How to remove characters from right in Excel?https://exceldashboardschool.com/remove-characters-from-right/This tutorial will demonstrate how to remove chara...
Published: May 16, 2023
🌐
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 - In the recent couple of articles, ... from strings in Excel. Today, we'll investigate one more use case - how to delete everything before or after a specific character. ... For data manipulations in multiple cells, Find and Replace is the right tool. To remove part of a string preceding or following a specific character, these are the steps to perform: Select all the cells where you want to delete text...
🌐
WPS Office
wps.com › blog › how-to-remove-characters-from-the-left-side-in-excel-easiest-ways-1
Easiest Ways to Remove Characters from the Left Side in Excel [2026]
June 1, 2026 - Replace "A1" with the cell reference containing the text. Step 3 (Using RIGHT and LEN Functions): Alternatively, you can use RIGHT and LEN functions: ... Replace "A1" with the cell reference. Step 1: Open Excel and locate the column or cells containing the data from which you want to remove a fixed number of characters from the left.
🌐
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 - Use the LEFT, RIGHT, or MID functions in combination with FIND or SEARCH to extract specific parts of the text. Use Text to Columns under the Data tab or TEXTSPLIT function in Excel 365 to separate values based on a delimiter. Use Flash Fill: manually type the desired result next to the first value, then press Ctrl + E to auto-complete the pattern. We have shown 5 methods through this article with step by step instruction. Removing specific text from ...