About 52,600 results
Open links in new tab
  1. Remove all tab characters (\t) in excel cells - Stack Overflow

    Feb 23, 2023 · Can I remove all tab characters (\t) in excel using 'Find And Replace'? I can't use VBA or Excel Function, because sheet has many cells and don't know which cell has tab char.

  2. Excel cell has an invisible character - Stack Overflow

    3 I was trying VLOOKUP between two different Excel sheets, but it always returned #N/A. I found out the problem is on the lookup workbook (second workbook); the value in the cell is a string …

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

  4. Fastest way to remove characters from cell - Stack Overflow

    What is the fastest way to remove characters for each cell? I have 300k rows, looping every single cell is not ideal. I tried text to column but i would need to know how many symbols there could be

  5. excel - Removing a certain character if it appears at the end of cell ...

    I have a massive database and looking to remove the pipe character '|' if it appears at the end of a cell. Some of the cells don't have the | at the end and do not need editing... so cannot just d...

  6. Removing special characters VBA Excel - Stack Overflow

    I'm using VBA to read some titles and then copy that information to a PowerPoint presentation. The problem is that the titles have special characters, but image files that I am also coping …

  7. Excel - Remove character from end of string - Stack Overflow

    Dec 1, 2016 · 4 Assuming the data is there in the Column A, use the function: =LEFT (A1,LEN (A1)-1). It will read all the characters excluding the last one.

  8. How do I delete all characters after the first space in a cell?

    Dec 18, 2017 · I have a list of city names followed by the state in which they are located all in one column in Excel. How can I delete everything after the first space so that the city name is the …

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

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

    Jul 30, 2016 · 0 This Should do it. =LEFT(A1,LEN(A1)-2) What we do in the formula is ask for the Left side of the text from the total string lenght minus two, which removes the 2 last characters …