Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #6  
Old 09-25-2018, 10:30 PM
macropod's Avatar
macropod macropod is offline Organise cells with line break into separate rows Windows 7 64bit Organise cells with line break into separate rows Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,521
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

For Excel, try:
Code:
Sub Demo()
Application.ScreenUpdating = False
Dim lRow As Long, r As Long, lCol As Long, c As Long
Dim i As Long, j As Long, k As Long, l As Long, m As Long, n As Long
With ThisWorkbook.Worksheets("Sheet1")
  With .UsedRange.Cells.SpecialCells(xlCellTypeLastCell)
    lRow = .Row
    lCol = .Column
  End With
  For r = lRow To 1 Step -1
    For c = 1 To lCol
      j = UBound(Split(.Cells(r, c).Value, Chr(10)))
      For i = 1 To j
        With .Rows(r).EntireRow
          .Copy
          .Insert Shift:=xlDown
        End With
      Next
      If j > 0 Then Exit For
    Next
    If j > 0 Then
      For k = c To lCol
        l = UBound(Split(.Cells(r, k).Value, Chr(10)))
        If l > 0 Then
          n = j
          For m = r + j To r Step -1
            .Cells(m, k).Value = Split(.Cells(r, k).Value, Chr(10))(n)
            n = n - 1
          Next
        End If
      Next
    End If
  Next
End With
Application.ScreenUpdating = True
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
Interchange line break and paragraph break shortcut keys skan Word 2 01-20-2017 03:50 AM
Organise cells with line break into separate rows Converting rows to separate colums MNMark Excel 1 01-06-2017 11:41 AM
How do I separate an address into separate cells Austcart Excel 2 01-18-2015 03:48 PM
Organise cells with line break into separate rows Get multiple cells in separate worksheet kerkstrt Excel 1 10-26-2014 11:20 PM
Organise cells with line break into separate rows entering data in separate rows within a cell drsuis Excel 1 02-19-2013 04:36 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 08:41 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft