vba to make Alt+Enter into new row

bobaol

Board Regular
Joined
Jun 3, 2002
Messages
225
Office Version
  1. 365
  2. 2003 or older
Platform
  1. Windows
Hello, I'm trying to separate cells with a lot of Alt+Enter data into new rows. For example, I have the following in cell A11
09 = ICD-9-CM
10 = ICD-10-CM
11 = ICD-11-CM
C4 = CPT-4
H4 = HCPCS-4
RV = Revenue code
LO = Local homegrown
OT = Other

I would like to have 8 new rows altogether. So then, row 11 would remain the same. then would insert a new row below A11, and in A12, it would be 09 = ICD-9-CM. B12 to XFC12 would be empty as this is an inserted row. then cell A13 would be 10 = ICD-10-CM, and so forth. I have some cells in column a with a lot of Alt+Enter data, and some that have none. For each cell in column A, I want to insert a new row for each Alt+Enter item. any help is appreciated. Thanks in advance.
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
We don't have visibility of your data so I don't know if the Insert is important to you ie
• Is there related data to the right of column A that needs to stay on the same row.
• If Yes, do they contain formula or special formatting.

If it is a simple as just dealing with Column A then this might work for you.
It is using the Active sheet and will output the split data to the same sheet to B11, so make sure you do it on a copy of your workbook.
I believe you wanted to keep the unsplit cell as well.

VBA Code:
Sub SplitCells()
    Dim ws As Worksheet
    Dim rngSrc As Range, rngDest As Range
    Dim lastRow As Long, iCntLf As Long
    Dim vSplit As Variant, arrSrc As Variant, arrDest As Variant
    Dim i As Long, j As Long, iOut As Long
    
    Set ws = ActiveSheet
    With ws
        lastRow = .Range("A" & Rows.Count).End(xlUp).Row
        Set rngSrc = .Range("A11:A" & lastRow)
        arrSrc = rngSrc.Value
        
        Set rngDest = .Range("B11")
    End With
    
    ' Size arrDest
    For i = 1 To UBound(arrSrc)
        vSplit = Split(arrSrc(i, 1), vbLf)
        iCntLf = iCntLf + UBound(vSplit) + 1
    Next i
    
    ReDim arrDest(1 To iCntLf + UBound(arrSrc), 1 To 1)

    ' Split lines
    For i = 1 To UBound(arrSrc)
        ' Retain original data
        iOut = iOut + 1
        arrDest(iOut, 1) = arrSrc(i, 1)
        ' Split Data
        vSplit = Split(arrSrc(i, 1), vbLf)
        For j = LBound(vSplit) To UBound(vSplit)
            iOut = iOut + 1
            arrDest(iOut, 1) = vSplit(j)
        Next j
    Next i
    
    rngDest.Resize(iOut) = arrDest

End Sub
 
Upvote 0
Solution
See if this works as you expect...
Code:
Sub test()
    Dim i&, x
    For i = Range("a" & Rows.Count).End(xlUp).Row To 1 Step -1
        x = Split(Cells(i, 1).Value, vbLf)
        If UBound(x) > 0 Then
            Rows(i + 1).Resize(UBound(x) + 1).Insert
            Cells(i + 1, 1).Resize(UBound(x) + 1).Value = Application.Transpose(x)
        End If
    Next
End Sub
 
Upvote 0
You can try this for the formula option.
Book1
AB
1109 = ICD-9-CM 10 = ICD-10-CM 11 = ICD-11-CM C4 = CPT-4 H4 = HCPCS-4 RV = Revenue code LO = Local homegrown OT = Other09 = ICD-9-CM 10 = ICD-10-CM 11 = ICD-11-CM C4 = CPT-4 H4 = HCPCS-4 RV = Revenue code LO = Local homegrown OT = Other
1216 = ICD-9-CM 17 = ICD-10-CM 18 = ICD-11-CM 19 = CPT-4 H20 = HCPCS-4 RV = Revenue code LO = Local homegrown OT = Other09 = ICD-9-CM
13This is something I made up completely to test blah1 blah2 blah3 blah410 = ICD-10-CM
1411 = ICD-11-CM
15C4 = CPT-4
16H4 = HCPCS-4
17RV = Revenue code
18LO = Local homegrown
19OT = Other
2016 = ICD-9-CM 17 = ICD-10-CM 18 = ICD-11-CM 19 = CPT-4 H20 = HCPCS-4 RV = Revenue code LO = Local homegrown OT = Other
2116 = ICD-9-CM
2217 = ICD-10-CM
2318 = ICD-11-CM
2419 = CPT-4
25H20 = HCPCS-4
26RV = Revenue code
27LO = Local homegrown
28OT = Other
29This is something I made up completely to test blah1 blah2 blah3 blah4
30This is something
31I made up
32completely
33to test
34blah1
35blah2
36blah3
37blah4
Sheet8
Cell Formulas
RangeFormula
B11:B37B11=DROP(REDUCE("",A11:A13,LAMBDA(a,b,VSTACK(a,b,TEXTSPLIT(b,,CHAR(10))))),1)
Dynamic array formulas.
 
Upvote 0
thanks Alex and Fuji, both solutions works for me. But Mr. Excel allows only one Yes box. and thanks Cubist, glad to get a refresher on the modern version of CSE. it's been a while since i last used CSE. I will have to get a refresher on the new #SPILL thingy and so forth.
 
Upvote 0
it's been a while since i last used CSE. I will have to get a refresher on the new #SPILL thingy and so forth.
#SPILL error indicates you didn't provide sufficient cells for the formula to output the result. You'd need to clear out the stuff below. Unlike VBA, spill-formulas do not overwrite the value of existing cells.
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top