Macro Error: Copy, Insert, Paste and Clear the Merged Cells from the previous row

dzeunen

New Member
Joined
Jul 25, 2017
Messages
6
I am trying to make buttons at various places within my worksheet to do the same thing (add rows). When I write the first macro for the button it works like a charm but when I copy it to the second button I get errors. The only thing that should change is where the blank row is inserted. Can anyone help me out with the macro below?

Private Sub CommandButton1_Click()
' Range("$A$2:$L$2").Select
Selection.Copy
Set c = Cells.Find("Daily Briefing Topic", , , xlWhole)
With c.EntireRow
.Copy
.Insert
Application.CutCopyMode = False
Intersect(.Offset(-1), Range("A:L")).ClearContents
End With
End Sub

Private Sub CommandButton2_Click()
' Range("$A$2:$L$2").Select
Selection.Copy
Set c = Cells.Find("Evening Briefing Topic", , , xlWhole)
With c.EntireRow
.Copy
.Insert
Application.CutCopyMode = False
Intersect(.Offset(-1), Range("A:L")).ClearContents
End With
End Sub
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.

Forum statistics

Threads
1,215,327
Messages
6,124,289
Members
449,149
Latest member
mwdbActuary

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