This includes it in the Autofilter, however I'm assuming that you already have the column filtered and you want to maintain the same filter criteria after the addition. I will investigate how to store the prior criteria as an array.
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("A:A")) Is Nothing Then
Dim c1 As Range 'First cell of filtered Range...
Set c1 = Range("A8")
Dim r1 As Long 'Last row of filtered Range...
r1 = c1.End(xlDown).Row
Selection.AutoFilter 'Unfiltered...
ActiveSheet.Range(c1, Cells(r1, 1)).AutoFilter 'Filter new Range...
End If
End Sub
Bookmarks