About 79,900 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. How to prevent automatic truncation of leading zeros in Excel cell

    Jul 16, 2019 · If you are using MS Excel to edit the cells where you need to store the numbers with leading zero, just format and define the cell content as TEXT. If you are storing it …

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

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

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

  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 - Remove dots from number - Stack Overflow

    Dec 19, 2017 · You need to change the decimal separator used in Excel to comma instead of dot to match your data. Copied from Microsoft: Change the character used to separate thousands …

  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 …