CTRL + F in upward direction

adoy73

New Member
Joined
Mar 14, 2006
Messages
46
I use Excel 2003. I have a list of information, and I need to do a "Find" or "CTRL + F" in the upward direction. It's hard to explain why I need it, but I do.

I know that in internet explorer and if you do a "CTRL + F" you can pick in direction up or in direction down. Is there a method of doing this in Excel?

Thanks,
Tim
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
You could run a macro, similar to the following:
sub FindIT()
Cells.Find(What:="v", After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _
xlPart, SearchOrder:=xlByRows, SearchDirection:=xlPrevious, MatchCase:=False _
, SearchFormat:=False).Activate
end sub
 
Upvote 0
Hold down the shift key while clicking the "Find Next" button in the find dialog box. That will reverse the search direction.
 
Upvote 0

Forum statistics

Threads
1,225,346
Messages
6,184,406
Members
453,230
Latest member
ProdInventory

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top