You could use this macro, perhaps assigning it to a keyboard shortcut.
Sub FilterBySelection()
Selection.AutoFilter Field:=Selection.Column - Selection.CurrentRegion.Column + 1,
Criteria1:=ActiveCell.Value
End Sub
--
Regards from Virginia Beach,
Earl Kiosterud
www.smokeylake.com
-----------------------------------------------------------------------
"whatisit" <(E-Mail Removed)> wrote in message
news:1722a270-7534-4b8d-bf47-(E-Mail Removed)...
> Hi All
>
> I use auto-filter a lot on very long spreadsheets. I would like to
> know if it's possible to somehow filter quickly by the value in the
> cell that is the current cursor location.
>
> So, say the current cell has HELLO in it. At the moment I move my
> pointer to the drop down arrow, click, enter 'h' to position
> approximately, page down, down, down till I get close, then select
> HELLO. This probably doesn't seem like much, but using only the
> keyboard (e.g. when the laptop is on my lap) it's rather tedious.
> Since I do this a lot, I'd love to find a shortcut that says: "Filter
> to show cells that match the current cell value".
>
>
> Thanks.