shift segment of a rows to next rows

excel_learner_vba

New Member
Joined
Jun 1, 2019
Messages
1
[TABLE="width: 417"]
<colgroup><col><col><col><col><col></colgroup><tbody>[TR]
[TD]Data looks as below[/TD]
[TD] [/TD]
[TD="colspan: 3"]want it as below[/TD]
[/TR]
[TR]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]May 05 2019[/TD]
[TD] [/TD]
[TD]May 05 2019[/TD]
[TD]Jun 17 2019[/TD]
[TD]Aug 9 2019[/TD]
[/TR]
[TR]
[TD]a[/TD]
[TD] [/TD]
[TD]a[/TD]
[TD]e[/TD]
[TD]sg[/TD]
[/TR]
[TR]
[TD]rs[/TD]
[TD] [/TD]
[TD]rs[/TD]
[TD]a[/TD]
[TD]dgh[/TD]
[/TR]
[TR]
[TD="align: right"]1[/TD]
[TD] [/TD]
[TD="align: right"]1[/TD]
[TD="align: right"]45[/TD]
[TD="align: right"]1234[/TD]
[/TR]
[TR]
[TD][+1][/TD]
[TD] [/TD]
[TD][+1][/TD]
[TD] [/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]Jun 17 2019[/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]e[/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]a[/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[/TR]
[TR]
[TD="align: right"]45[/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]Aug 9 2019[/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]sg[/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]dgh[/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[/TR]
[TR]
[TD="align: right"]1234[/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[TD] [/TD]
[/TR]
</tbody>[/TABLE]


I am just stuck with this. Could you please give me a macro code or some other method to do this? thank you very much!
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Hi excel_learner_vba,

Welcome to the MrExcel Forum. This code works with the data you provided above. The only caveat is that you must continue to use the standard 3 letter abbreviation for the names of the months.

Also, this code will delete data that is not recoverable, please test this on a backup copy of your work.

Code:
Sub MoveText()


    Dim arr, pos, mns
    Dim val As String
    Dim lRow As Long, i As Long, c As Long, r As Long


    mns = Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec")
    lRow = Cells(Rows.Count, 1).End(xlUp).Row
    arr = Range("A1:A" & lRow)
    Range("A1:A" & lRow).ClearContents
    For i = LBound(arr) To UBound(arr)
        val = Left(arr(i, 1), 3)
        pos = Application.Match(val, mns, False)
        If Not IsError(pos) Then
            r = 1
            c = c + 1
            Cells(r, c) = arr(i, 1)
            r = r + 1
        Else
            Cells(r, c) = arr(i, 1)
            r = r + 1
        End If
    Next


End Sub

I hope this helps...
 
Upvote 0

Forum statistics

Threads
1,223,246
Messages
6,170,988
Members
452,373
Latest member
TimReeks

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