Sub Filter()
Dim k(), ka, I As Long, d As String, n As Long, c As Long
With Worksheets("Data")
ka = .Range("a6:d" & .Range("a" & .Rows.Count).End(xlUp).Row)
End With
ReDim k(1 To UBound(ka, 1), 1 To 5)
With CreateObject("scripting.dictionary")
.comparemode = 1
For I = 1 To UBound(ka, 1)
If ka(I, 1) Like "*(*)" Then d = ka(I, 1): GoTo Nxt
If Len(ka(I, 3)) Then
If Not .exists(ka(I, 3)) Then
n = n + 1: k(n, 1) = d
For c = 1 To UBound(ka, 2)
k(n, c + 1) = ka(I, c)
Next
.Add ka(I, 3), Nothing
End If
End If
Nxt:
Next
End With
If n Then
With Worksheets("Detail")
Union(.Range("b2").Resize(n), .Range("e2").Resize(n)).NumberFormat = "[h]:mm"
.Range("a2").Resize(n, UBound(k, 2)) = k
End With
End If
End Sub
Date-Filter.xls
Experts Exchange always has the answer, or at the least points me in the correct direction! It is like having another employee that is extremely experienced.
When asked, what has been your best career decision?
Deciding to stick with EE.
Being involved with EE helped me to grow personally and professionally.
Connect with Certified Experts to gain insight and support on specific technology challenges including:
We've partnered with two important charities to provide clean water and computer science education to those who need it most. READ MORE