Hey buddy, tweaked a little in the code section. I hope you know Target is a cell reference that tells where exactly the event has occurred. Selection can be called its plural. In order to track the changes in B4 cell alias "vFilterBy", the cell address should match with the Target cell's address and there in our code we use
If Target.Address = Range("vFilterBy").Address Then
The first line of our code. It confirms and tells the processor that the change has occurred in B4 only, so.. do the following codes - like kind of thing. Following is a sample of how you can perform it. See re-worked attached file for working example.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = Range("vFilterBy").Address Then
Call FilterData
Application.ScreenUpdating = False
Select Case Range("vFilterBy").Value
Case "Breaker":
Cells.EntireColumn.Hidden = True
Range("A:I, K:K, L:L, AP:AP, AZ:BK, BP:BP").EntireColumn.Hidden = False
Case "HVAC":
Case "XFMR":
Case "PanelBoard":
Case "all":
Cells.EntireColumn.Hidden = False
End Select
Application.ScreenUpdating = True
End If
If Target.Count > 1 Then Exit Sub
'Target Cell
If Target.Address(0, 0) <> "B3" Then Exit Sub
Dim r As Range
On Error GoTo Err
'Columns to search and add
Set r = Sheet15.Range("lstCategoryOnly").Find(What:=Target, SearchDirection:=2, lookat:=xlWhole)
If r Is Nothing Then Exit Sub
r.EntireRow.Copy
r(2).EntireRow.Insert Shift:=xlDown
r(2, 2).Resize(, 60).SpecialCells(2).ClearContents
r(2).Select
Application.CutCopyMode = False
Exit Sub
Err:
End Sub
P.S. I must say, its the first check condition in the above code. :P
Bookmarks