Combining multiple worksheet change events into one?

sidel801

New Member
Joined
Nov 2, 2023
Messages
5
Office Version
  1. 365
Platform
  1. Windows
There are two worksheet events that I was hoping to combine. The first event is meant to keep rows filtered depending on a criteria and the other event is meant to copy formulas when a new row is added. I seem to get an error when I try to put both events in. Any help would be greatly appreciated!



Event 1:

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Columns.Count < Me.Columns.Count Then
Range("e10:e80").AdvancedFilter Action:=xlFilterInPlace, CriteriaRange:=Range _
("e6:e7"), Unique:=False

End If
End Sub
Event 2:

Private Sub Worksheet_Change(ByVal Target As Range)

Application.ScreenUpdating = False

Dim lngCols(1 To 3) As Long

lngCols(1) = 10
lngCols(2) = 11
lngCols(3) = 12

On Error GoTo ErrorHandler:
If Target.Columns.Count <> Columns.Count Then Exit Sub

For i = 1 To UBound(lngCols)
Cells(Target.Offset(-1, 0).Row, lngCols(i)).Copy
Cells(Target.Row, lngCols(i)).Select
ActiveCell.PasteSpecial xlPasteFormulas
Next i

ErrorHandler:
Application.ScreenUpdating = True
End Sub
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim lngCols(1 To 3) As Long

Application.ScreenUpdating = False

If Target.Columns.Count < Me.Columns.Count Then
    Range("e10:e80").AdvancedFilter Action:=xlFilterInPlace, CriteriaRange:=Range ("e6:e7"), Unique:=False
End If

lngCols(1) = 10
lngCols(2) = 11
lngCols(3) = 12

On Error GoTo ErrorHandler:
If Target.Columns.Count <> Columns.Count Then Exit Sub

For i = 1 To UBound(lngCols)
   Cells(Target.Offset(-1, 0).Row, lngCols(i)).Copy
   Cells(Target.Row, lngCols(i)).Select
   ActiveCell.PasteSpecial xlPasteFormulas
Next i
Application.ScreenUpdating = True
exit sub

ErrorHandler:
Application.ScreenUpdating = True
End Sub
 
Upvote 0
Wow! It worked! Thank you so much!

The one issue I'm running into now is when I add a row to the sheet, event 1 triggers and it automatically filters. It seems to work when just event 1 is showing up, but with this combined code, it seems to trigger every time a change happens. Any idea how to get around that? Not sure if that makes sense.

Really appreciate the help!
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,954
Members
449,096
Latest member
Anshu121

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