About 81,800 results
Open links in new tab
  1. excel - How to remove ALL numbers from a cell with a function or …

    How to remove ALL numbers from a cell with a function or regex? Asked 15 years, 3 months ago Modified 8 years, 10 months ago Viewed 60k times

  2. Remove duplicates within Excel cell - Stack Overflow

    Guess this might be Excel's equivalent to google sheets' join function. Textjoin comes up if you type in =join - I took the formula provided in user11308575's post above but removed the parantheses and …

  3. Excel VBA - Remove everything but numbers and dots from string

    Jan 23, 2025 · What is the best approach for a code to remove all text from a cell besides numbers and dots using regex? I got the basic regex expression " [^.0-9]+)" working on Regex101, but some …

  4. Excel formula: How do I remove last two digits or last two letters in ...

    Jul 30, 2016 · For example: How do I remove the last 2 letters or digits on the next column?

  5. excel - Remove cells greater than a number in a column - Stack Overflow

    I know I can do an advanced filter with those column titles, and use a formula to get my greater than numbers for all of them rapidly, but the advanced filter will remove the entire row. I'd like to simply …

  6. excel - Remove dots from number - Stack Overflow

    Dec 19, 2017 · I have a column with numbers formatted as general | 2.500,00 | | 70,2 | | ... | I have a macro that tries to delete the dot in the column. When I do it manually the result is | 2500,00 ...

  7. VBA to remove numbers from start of string/cell - Stack Overflow

    What I need is for this code to instead of removing the text I would like it to remove the numbers, and I only want it to remove the numbers at the beginning of the string/cell the rest of the data I would like …

  8. How to remove the character "*" in Excel 2010? - Stack Overflow

    Dec 17, 2013 · The escape character in Excel is the ~. So, to find and replace all asterisks, search for ~* and replace with nothing. Please see the image in order to remove all * characters.

  9. Excel Formula for removing leading 1 on phone number if present

    Jul 9, 2018 · 2 I am needing to create a formula that removes the leading 1 from a 11 digit phone number as shown below. I would also like the formula to exclude any 10 numbers that doesn't have a …

  10. Remove everything but numbers from a cell - Stack Overflow

    Mar 23, 2017 · 3 I have an excel sheet where i use the follwoing command to get numbers from a cell that contains a form text: =MID(D2;SEARCH("number";D2)+6;13) It searches for the string "number" …