About 44,400 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, 9 months ago Viewed 60k times

  2. 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 ...

  3. 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?

  4. 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 …

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

    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 …

  6. 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 …

  7. 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 …

  8. 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 …

  9. excel delete row if column contains value from to-remove-list

    In another sheet - number two - I have a "to-remove-list" - a single column ' A ' with 400 values, each containing alphanumerical string (example: xxx1234). I have to remove every entire row …

  10. 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.