Hotkey / Shortcut Keys in Filters

R

Rebecca

Greetings. I am using MS VISTA and Excel 2007.

When I am using a filter, I have to right mouse click to get "Filter" and
then "Filter by Selected Cell's Value."

Then is somewhat time consuming. Is there any way to reduce these three
mouse clicks, say by using a hotkey or shotcut key? I searched the help file
but I couldn't find any mention of such keys for filters.
 
A

andrewuk311

You could create a simple macro and assign a shortcut key to it.
For example,

Sub Filter()
ActiveSheet.Range("$A:$B").AutoFilter Field:=1,
Criteria1:=ActiveCell.Value
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top