+ Reply to Thread
Results 1 to 4 of 4

Excel Find Method

  1. #1
    JonWayne
    Guest

    Excel Find Method

    I get the error, "Unable to get the Find property of the Range class",
    whenever I use the Find method in Excel VBA. This is my usage:

    Set rngTemp = rngCol1.Find("Party Name:", "A1", xlValues, xlPart, xlByRows,
    xlNext, False)

    Any ideas?



  2. #2
    RB Smissaert
    Guest

    Re: Excel Find Method

    This works with me:

    Sub test()

    Dim rngCol As Range
    Dim rng As Range

    Set rngCol = Columns(1)

    Set rng = rngCol.Find(What:="test", _
    After:=Cells(1), _
    LookIn:=xlValues, _
    LookAt:=xlPart, _
    SearchOrder:=xlByRows, _
    SearchDirection:=xlNext, _
    MatchCase:=False, _
    SearchFormat:=False)

    If Not rng Is Nothing Then
    MsgBox rng.Address
    End If

    End Sub

    RBS



    "JonWayne" <jongunn@bellsouth.net> wrote in message
    news:rD55e.38182$vK6.13070@bignews3.bellsouth.net...
    >I get the error, "Unable to get the Find property of the Range class",
    > whenever I use the Find method in Excel VBA. This is my usage:
    >
    > Set rngTemp = rngCol1.Find("Party Name:", "A1", xlValues, xlPart,
    > xlByRows,
    > xlNext, False)
    >
    > Any ideas?
    >
    >



  3. #3
    Tom Ogilvy
    Guest

    Re: Excel Find Method

    Are you using Excel 97 and executing this from a commandbutton? If so
    change the TakeFocusOnClick property of the commandbutton to False.

    --
    Regards,
    Tom Ogilvy


    "JonWayne" <jongunn@bellsouth.net> wrote in message
    news:rD55e.38182$vK6.13070@bignews3.bellsouth.net...
    > I get the error, "Unable to get the Find property of the Range class",
    > whenever I use the Find method in Excel VBA. This is my usage:
    >
    > Set rngTemp = rngCol1.Find("Party Name:", "A1", xlValues, xlPart,

    xlByRows,
    > xlNext, False)
    >
    > Any ideas?
    >
    >




  4. #4
    Tom Ogilvy
    Guest

    Re: Excel Find Method

    Looking a little closer at your code it should probably be:

    Set rngTemp = rngCol1.Find("Party Name:", rngCol1(1), _
    xlValues, xlPart, xlByRows,xlNext, False)

    --
    Regards,
    Tom Ogilvy


    "JonWayne" <jongunn@bellsouth.net> wrote in message
    news:rD55e.38182$vK6.13070@bignews3.bellsouth.net...
    > I get the error, "Unable to get the Find property of the Range class",
    > whenever I use the Find method in Excel VBA. This is my usage:
    >
    > Set rngTemp = rngCol1.Find("Party Name:", "A1", xlValues, xlPart,

    xlByRows,
    > xlNext, False)
    >
    > Any ideas?
    >
    >




+ 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