About 49,700 results
Open links in new tab
  1. Excel - Array Formula to skip empty cells - Stack Overflow

    Found a simpler and easier way, basically Excel considers all blank cells ("") equal, so another easy way is to select the column that contains the data and click on Remove Duplicates under …

  2. How do I prevent Excel from automatically replicating formulas in ...

    18 You can stop creating calculated columns. The option to automatically fill formulas to create calculated columns in an Excel table is on by default. If you don’t want Excel to create …

  3. Excel remove @domain.com from username - Stack Overflow

    1 I have a list of 400 email addresses in an Excel spreadsheet that I need to truncate so I will be able to delete them from our email system. However, the program requires that I only use the …

  4. Excel cell has an invisible character - Stack Overflow

    I had used power query which is an excel add in to import a bunch of text files (8000+) into excel. I noticed that if I right click on the file content column which is originally represented by value …

  5. excel - Remove AM/PM from "time" cell - Stack Overflow

    Convert the time to a general value, and custom formatting to remove AM/PM. Solution: 1. Change the cell format to "general", the time will become a number. For example 0:06:40 …

  6. How to remove duplicates that are case SENSITIVE in Excel (for …

    (The formula could be extended to become case sensitive, but I didn't bother to try.) One thing to note, however, with the failed INDEX formula was that the behavior described above occured …

  7. excel - Array formula to return an ARRAY without duplicates, …

    1 I would like to know whether it's possible to return an array from a single cell formula, which is filtered to remove duplicates, and which is built purely on Excel formulas. I'm aware of …

  8. Why does excel add an '@' in the middle of my formula?

    Jul 22, 2023 · 1 Range.Formula uses "Implicitly Intersection Evaluation" which means the formula is not evaluated on a spill array basis. This fact is why Excel inserts the "@" into the formula in …

  9. Alternative Excel Filter Formula to remove zeros

    Alternative Excel Filter Formula to remove zeros Asked 5 years, 8 months ago Modified 5 years, 8 months ago Viewed 2k times

  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 …