How to replace commas with newlines (Alt + Enter) in cells in Excel?
As the left screenshot shown, how to replace commas with newlines within cells in Excel? Methods in this article can help you.
Replace commas with newlines with Find and Replace function
Replace commas with newlines with VBA code
Replace commas with newlines with Find and Replace function.
You can apply the Find and Replace function to replace all commas in selected cells with newlines. Please do as follows.
1. Select the cells you will replace all commas with newlines. Then click Home > Find & Select > Replace. See screenshot:
Note: You can also press the Ctrl + H keys together to open the Find and Replace dialog box.
2. In the opening Find and Replace dialog box and under the Replace tab, you need to:
3. Then a Microsoft Excel prompt box pops up, please click the OK button.
4. Close the Find and Replace dialog box.
Now all commas are replaced with newlines in selected cells.
Unlock Excel Magic with Kutools AI
- Smart Execution: Perform cell operations, analyze data, and create charts—all driven by simple commands.
- Custom Formulas: Generate tailored formulas to streamline your workflows.
- VBA Coding: Write and implement VBA code effortlessly.
- Formula Interpretation: Understand complex formulas with ease.
- Text Translation: Break language barriers within your spreadsheets.
Replace commas with newlines with VBA code
This section will introduce a VBA code to replace all commas in selected cells with newlines. Please do as follows step by step.
1. Select the cells containing the commas you need to replace with newlines, then press the Alt + F11 keys simultaneously to open the Microsoft Visual Basic for Applications window.
2. In the Microsoft Visual Basic for Applications window, click Insert > Module. Then copy and paste VBA code into the Code window. See screenshot:
VBA code: Replace all commas in selected cells with newlines
Sub ReplaceComma()
Dim rngCell As Range
For Each rngCell In Selection
rngCell.Value = Replace(rngCell, ",", vbLf)
Next
End Sub
3. Press the F5 key or click the Run button to run the code. Then all commas in selected cells are replaced with newlines immediately.
Easily split multi-line cell contents into rows or columns in Excel:
Kutools for Excel's Split Cells utility helps you easily split cell contents by space, comma, new line or other separators into separated rows or columns in Excel. See screenshot: Download and try it now! (30-day free trail)
Related article:
- How to replace the last comma with and in cells in Excel?
- How to split multiline cell contents into separated rows/columns in Excel?
- How to put multiple lines of text in one cell in Excel?
Best Office Productivity Tools
Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time. Click Here to Get The Feature You Need The Most...
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!