Advertisement
Advertisement
| 09.10.2008 at 03:05AM PDT, ID: 23718588 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: |
Sub SplitCells()
' --look for Chr(10) from bottom
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
Dim nr As Integer
nr = 1 ' The cell to start from 1=A, 2=B etc
Dim i As Long, j As Long, k As Long
For i = Cells(Cells.Rows.Count, "A").End(xlUp).Row _
To 1 Step -1
j = Len(Cells(i, 2)) - Len(Replace(Cells(i, 2), _
Chr(10), "")) / Len(Chr(10))
If j > 0 Then
Rows(i + 1).Resize(j).Insert
For k = 0 To j - 1
'-- start column (default is A)
Cells(i + k + 1, nr) = Mid(Cells(i + k, nr), _
InStr(1, Cells(i + k, nr), _
Chr(10), vbTextCompare) + 1)
Cells(i + k, nr) = Left(Cells(i + k, nr), _
InStr(1, Cells(i + k, nr), _
Chr(10), vbTextCompare) - 1)
'-- column B
Cells(i + k + 1, (nr + 1)) = Mid(Cells(i + k, (nr + 1)), _
InStr(1, Cells(i + k, (nr + 1)), _
Chr(10), vbTextCompare) + 1)
Cells(i + k, (nr + 1)) = Left(Cells(i + k, (nr + 1)), _
InStr(1, Cells(i + k, (nr + 1)), _
Chr(10), vbTextCompare) - 1)
// Similar code
// Similar code
End Sub
|