VBA Error 424 - Inserting Rows at Page Breaks and then copying offset string to cell A in active row

MikeL

Active Member
Joined
Mar 17, 2002
Messages
488
Office Version
  1. 365
Platform
  1. Windows
Hi,
Any thoughts as to why a '424' error and how to make this work?
It does insert 2 rows at each page break. But then I need to copy the nearest value in column A to the active row.

Sub PageBreaks2()
Dim sh As Worksheet
Set sh = ActiveSheet
Dim hPage As HPageBreak

For Each hPage In sh.HPageBreaks
hPage.Location.EntireRow.Resize(2).Insert Shift:=xlDown

Cells(ActiveCell.Row, "A").Activate

If cell.Offset(-1, 0).Value <> "" Then
cell.Value = cell.Offset(-1, 0).Value
Else
cell.Value = cell.End(xlUp).Value
End If

Next hPage

End Sub
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
VBA Code:
Sub PageBreaks2()
Dim sh As Worksheet
Set sh = ActiveSheet
Dim hPage As HPageBreak
Dim cell As Range
For Each hPage In sh.HPageBreaks

hPage.Location.EntireRow.Resize(2).Insert Shift:=xlDown
Set cell = Cells(ActiveCell.Row, "A")
'cell.Activate
If cell.Offset(-1, 0).Value <> "" Then
cell.Value = cell.Offset(-1, 0).Value
Else
cell.Value = cell.End(xlUp).Value
End If

Next hPage

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,876
Members
449,056
Latest member
ruhulaminappu

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