![]() |
|
#6
|
||||
|
||||
|
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] |
|
|
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 |
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 |
Get multiple cells in separate worksheet
|
kerkstrt | Excel | 1 | 10-26-2014 11:20 PM |
entering data in separate rows within a cell
|
drsuis | Excel | 1 | 02-19-2013 04:36 PM |