About 50 results
Open links in new tab
  1. excel - Substitute a comma with a line break in a cell - Stack Overflow

    Aug 5, 2019 · In the cell below, I want to get whatever is separated by a comma to come to a new line. I can add these line breaks manually with alt+enter, but this time I want to automate it. …

  2. How to check for spaces before or after a string in excel

    Aug 24, 2012 · I have a column containing values spread over several rows. Some of the values have a space either in front or at the end of the value. Is there a simple way to find out such occurences in a …

  3. How do I open space-delimited file in Microsoft Excel?

    Open the CSV file with Excel 2016. Look for "Data" tab and "Text in column" button. In the step 1, select "Delimited". In the step 2, select first "space", and then choose "string classifier" as ". Then Excel will …

  4. Remove line breaks, return carriages, and all leading space in Excel Cell

    Apr 27, 2013 · Remove line breaks, return carriages, and all leading space in Excel Cell Asked 12 years, 7 months ago Modified 2 years, 3 months ago Viewed 53k times

  5. How can I replace "enter" or a new line with a character using Excel ...

    Jun 16, 2022 · Currently, I have two paragraphs in one cell, and I want to merge the paragraphs together within the cell to form one big paragraph. I also want to replace the "enters" with …

  6. excel - Barcode scanner not pressing ENTER/going to the next row …

    Dec 8, 2023 · When I use my barcode scanner and scan a barcode, the code is sent to my spreadsheets. However, I need to press space to enter the next cell. Why is the feature to …

  7. VBA Replacing New-Lines (Enter) with space in a string

    I want to replace all enters in a string with space. for example code should turn: line 1 content line 2 content line 3 content into: line 1 content line 2 content line 3 content Here is a real ...

  8. Insert line break in wrapped cell via code - Stack Overflow

    Mar 28, 2012 · Is it possible to insert line break in a wrapped cell through VBA code? (similar to doing Alt - Enter when entering data manually) I have set the cell's wrap text property to True via VBA code, …

  9. Add space between number and letter in excel - Stack Overflow

    May 19, 2023 · I'm trying to make a formula that adds space between numbers and letters, but it's not working, some strings it adds the space and others don't. Can anyone help me out and explain …

  10. What is the character code for new line break in excel

    Dec 18, 2015 · Wait - you're trying to replace new line breaks. Does this not work? =SUBSTITUTE(A1,CHAR(10)," ") . Where A1 is a cell with text, and line breaks? If not, can you …