+ Reply to Thread
Results 1 to 3 of 3

Excel has a "Find Next" command but no "Find Previous" command.

  1. #1
    Michael Fitzpatrick
    Guest

    Excel has a "Find Next" command but no "Find Previous" command.

    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. #2
    Alan Beban
    Guest

    Re: Excel has a "Find Next" command but no "Find Previous" command.

    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. #3
    Dave Peterson
    Guest

    Re: Excel has a "Find Next" command but no "Find Previous" command.

    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 to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1