Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Excel allows one to do a "Find Next" to find text in a worksheet. But there
is no "Find Previous" command. How would one implement a "Find Previous" to find a string of text before the present cell? |
#2
![]() |
|||
|
|||
![]()
Michael Fitzpatrick wrote:
Excel allows one to do a "Find Next" to find text in a worksheet. But there is no "Find Previous" command. How would one implement a "Find Previous" to find a string of text before the present cell? To find the next previous occurrence of 4 in Column A preceding the Cell A6, Set rng = Range("a1:a14") Set x = rng.Find(4, Range("A6"), , , , xlPrevious) Alan Beban |
#3
![]() |
|||
|
|||
![]()
And if you're doing it manually via the Edit|find dialog, just shift-click on
the Find button. Michael Fitzpatrick wrote: Excel allows one to do a "Find Next" to find text in a worksheet. But there is no "Find Previous" command. How would one implement a "Find Previous" to find a string of text before the present cell? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? | Excel Discussion (Misc queries) | |||
macro to Find Replace in Excel | Excel Discussion (Misc queries) | |||
command button in excel will move when print. | Excel Discussion (Misc queries) | |||
Microsoft Excel could not find anything to print | Excel Discussion (Misc queries) | |||
boolean find criteria in Excel | Excel Discussion (Misc queries) |