Good morning,
I am in need of combining two Private Sub formulas together.
Individually they work, and are as follows:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$F$2" Then
Range("F3").Value = ""
End If
If Target.Address = "$F$3" Then
Range("F4").Value = ""
End If
End Sub
AND...
Private Sub Worksheet_Change(ByVal Target As Range)
Sheets("Sheet3").AutoFilter.ApplyFilter
End Sub
I thought combining them would be pretty simple, and I've tried a few different tweaks, but I always get an error.
Any help would be greatly appreciated, so much.
I am in need of combining two Private Sub formulas together.
Individually they work, and are as follows:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$F$2" Then
Range("F3").Value = ""
End If
If Target.Address = "$F$3" Then
Range("F4").Value = ""
End If
End Sub
AND...
Private Sub Worksheet_Change(ByVal Target As Range)
Sheets("Sheet3").AutoFilter.ApplyFilter
End Sub
I thought combining them would be pretty simple, and I've tried a few different tweaks, but I always get an error.
Any help would be greatly appreciated, so much.