Once in filtered column header, it takes holding Alt and pressing Down Arrow to get filter window to show. Then it takes 8 Down Arrows to get cursor to end up in Search field. Below code fails...
VBA Code:
Sub DropFilter()
Range("E3").Select
Application.SendKeys ("% + {Down}")
Application.SendKeys ("{Down 8}")
End Sub