About 214,000 results
Open links in new tab
  1. Excel: replace part of cell's string value - Stack Overflow

    Excel: replace part of cell's string value Asked 13 years, 10 months ago Modified 6 years, 3 months ago Viewed 225k times

  2. excel - Search and replace text in a string - Stack Overflow

    Dec 12, 2022 · I use the code below to search and replace a part of a text in a string. It works fine for almost 97 % of the replacements but not when one string that is supposed to be replaced is identical …

  3. Removing special characters VBA Excel - Stack Overflow

    To also remove commas, replace first line with Const SpecialCharacters As String = "! @ # $ % ^ & * ( ) { [ ] } ? ," and in the for statement For each char in Split(SpecialCharacters, " "). You can replace the …

  4. Replace text at specific position in string using VBA

    Replacing a string in string in VBA is an easy taks, if Replace() is used. Anyway, if Replace() is to be omitted, then it becomes more interesting. Theoretically, the string could be splitted always into 3 …

  5. How to find and replace with regex in excel - Stack Overflow

    Jan 15, 2016 · There's a REPLACE function that can take text from one field and replace it with other text, but it's bare-bones. You have to specify the index and length of the substring to replace, along …

  6. excel - Python Pandas read_excel dtype str replace nan by blank ...

    Feb 7, 2013 · Thank you. Is there any specific reason/added value that read_excel would replace blank/empty cells with 'nan' string instead of leaving them blank?

  7. How to remove all non alphanumeric characters from a string except ...

    Mar 30, 2013 · I need to remove all non alphanumeric characters from a string except period and space in Excel. A solution using VBA rather than pure excel functions be just fine.

  8. VBA Excel find words in a range and replace - Stack Overflow

    Jun 1, 2017 · The Replace function in VBA is designed to work on a single string, whereas the Range.Replace method is designed to work on a Range. As such, you can perform your …

  9. Replace multiple characters in a string variable (VBA)

    May 2, 2016 · The replace function works the exactly same way as a Forumla in excel, so if you have a formula already made, you can just copy and paste it into the VBA script.

  10. Replace text using RegEx in Excel-VBA - Stack Overflow

    Dec 28, 2015 · 0 The easiest approach to me seems to be to use LEFT and RIGHT functions to extract the two separate timestamps, then to convert these timestamps to dates using TEXT function. …