Insert cells below and copy above data

Nadine67

Board Regular
Joined
May 27, 2015
Messages
225
Hello and thank you for any attention my post may receive.

My goal is to:
  1. find every occurrence of the word "Weekly" in column C e.g. C3,C6;
  2. insert 6 lines below (in range A2:C500) each occurrence;
  3. fill each occurrence of those 6 blank lines with the data from range A2:C500 where the word "Weekly" was found.

A
B
C
1
area
type
frequency
2
264a
a
daily
3
260d
a
weekly
4
264a
c
monthy
5
273c
e
daily
6
264b
c
weekly
7
273a
b
daily
8
264a
d
daily

<tbody>
</tbody>


The code I currently have finds the first occurrence, inserts 6 full rows above, then fills those six rows with the data that was above the occurrence. It is rather back to front and I am at lost as to where to make further changes to achieve my goal.
Code:
Sub InsertRows()

Cells.Find(What:="Weekly", After:=ActiveCell, LookIn:=xlValues, _
LookAt:=xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate

Dim d As Integer
d = Range("C:C").End(xlDown).Row
Dim c As Range
    For i = d To 1 Step -1
        If Cells(i, 3).Value = "Weekly"Then
            Dim Rng, n As Long, k As Long
            Application.ScreenUpdating = False
            Rng = 6
                If Rng = "" Then Exit Sub
                Range(ActiveCell, ActiveCell.Offset(Val(Rng) - 1, 0)).EntireRow.insert 'Shift:=xlDown
                k = ActiveCell.Offset(-1, 0).Row
                n = Cells(k, 4).End(xlToLeft).Column
                Range(Cells(k, 1), Cells(k + Val(Rng), n)).FillDown
            End If
    Next
End Sub



Thanks again in advance, and have a great day!
 
Last edited:

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Thank to those who viewed my post.

I am still looking for a solution, however on the positive side I have made a change that inserts the rows below and populates them with the correct data...but only when "Weekly" appears once in the column.

When "Weekly" appears 2X in the column the code below inserts 18 rows below the first occurrence of "Weekly", 3X in the column the code below inserts 30 rows below the first occurrence of "Weekly", 4X in the column the code below inserts 36 rows below the first occurrence of "Weekly"...

I am rather perplexed...

Code:
Sub InsertRows()

Cells.Find(What:="Weekly", After:=ActiveCell, LookIn:=xlValues, _
LookAt:=xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
Dim d As Integer
d = Range("C:C").End(xlDown).Row
Dim c As Range
    For i = d To 1 Step -1
        If Cells(i, 3).Value = "Weekly" Then
            Dim Rng, n As Long, k As Long
            Application.ScreenUpdating = False
            Rng = 6
                If Rng = "" Then Exit Sub
                    Range(ActiveCell.Offset(1, 0), ActiveCell.Offset(Val(Rng), 0)).EntireRow.insert
                    k = ActiveCell.Row '.Offset(-1, 0)
                    n = Cells(k, 4).End(xlToLeft).Column
                    Range(Cells(k, 1), Cells(k + Val(Rng), n)).FillDown
            End If
    Next
End Sub

Again, any help would be greatly appreciated.
 
Upvote 0
If you'll never have 2 or Weekly together, try
Code:
Sub insertRws()
   Dim Rng As Range
   With Range("C:C")
      .Replace "Weekly", "=XXXWeekly", xlWhole, , False, , False, False
      For Each Rng In .SpecialCells(xlFormulas, xlErrors).Areas
         Rng.Offset(1).Resize(6).EntireRow.Insert
         Rng.Offset(, -2).Resize(7).EntireRow.FillDown
      Next Rng
      .Replace "=XXXWeekly", "Weekly", xlWhole, , False, , False, False
   End With
End Sub
 
Upvote 0
Thank you Fluff.

Yes there will definitely be occasions where multiple occurrences of "Weekly" are together.

I do appreciate your help with this. I will keep trying for a solution.
 
Upvote 0
In that case try
Code:
Sub insertRws()
   Dim Rng As Range
   Dim i As Long
   With Range("C:C")
      .Replace "Weekly", "=XXXWeekly", xlWhole, , False, , False, False
      For Each Rng In .SpecialCells(xlFormulas, xlErrors).Areas
         If Rng.Count = 1 Then
            Rng.Offset(1).Resize(6).EntireRow.Insert
            Rng.Offset(, -2).Resize(7).EntireRow.FillDown
         Else
            For i = Rng.Count To 1 Step -1
               Rng(i).Offset(1).Resize(6).EntireRow.Insert
               Rng(i).Offset(, -2).Resize(7).EntireRow.FillDown
            Next i
         End If
      Next Rng
      .Replace "=XXXWeekly", "Weekly", xlWhole, , False, , False, False
   End With
End Sub
 
Upvote 0
*** SOLVED ***

Wow, you have solved my issue!

Your code achieves my goal.

Thank you for your help and your time Fluff. You have made my day.
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,215,374
Messages
6,124,573
Members
449,173
Latest member
Kon123

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