+ Reply to Thread
Results 1 to 8 of 8

trouble with 'cells.find' returning error

  1. #1
    Registered User
    Join Date
    07-01-2013
    Location
    Canberra, Australia
    MS-Off Ver
    Excel 2007
    Posts
    37

    trouble with 'cells.find' returning error

    Hi,

    I am wondering if anyone has a solution to my problem. I am trying to set up a command button in the "FORMS" sheet called "Add new employee" that runs a form and macro to add employees to the "Station Capacity" sheet. I have attached the Excel Spreadsheet that I am working on, but the trouble bit of code that is producing the error is given below.

    Cells.find(What:=x, After:=ActiveCell, LookIn:=xlFormulas, _
    LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
    MatchCase:=False, SearchFormat:=False).Activate

    I would appreciate any help with fixing this.

    The funny thing is that when you run the macro "moveest" separately the code works. But when added to the command button "Add new employee" it doesn't.

    Thanks so much.
    Cheers,
    Laura
    Attached Files Attached Files

  2. #2
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: trouble with 'cells.find' returning error

    Cells.Find won't usually return an error but it can return Nothing if what you are looking for isn't found.

    If that happens the code will error when you try and activate Nothing.

    What you can do to avoid the error is something like this.
    Please Login or Register  to view this content.
    If posting code please use code tags, see here.

  3. #3
    Registered User
    Join Date
    07-01-2013
    Location
    Canberra, Australia
    MS-Off Ver
    Excel 2007
    Posts
    37

    Re: trouble with 'cells.find' returning error

    Thanks for the quick response. I really appreciate your help. However I want the "What:=" value to find sheets("FORMS").Range("L2").Value in worksheet("Station Capacity"). Is that possible?

  4. #4
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: trouble with 'cells.find' returning error

    Will the value from 'FORMS' be found in a particular column/row/range on 'STATION CAPACITY', or could it be anywhere?

  5. #5
    Registered User
    Join Date
    07-01-2013
    Location
    Canberra, Australia
    MS-Off Ver
    Excel 2007
    Posts
    37

    Re: trouble with 'cells.find' returning error

    to give further background too, the value in 'sheets("FORMS").Range("L2").Value will be varied so don't wish to search for a fixed value i.e.

    Cells.find(What:=Adelaide, After:=ActiveCell, LookIn:=xlFormulas, _
    LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
    MatchCase:=False, SearchFormat:=False).Activate

    Instead I want something like this

    Cells.find(What:=sheets("FORMS").Range("L2").Value, After:=ActiveCell, LookIn:=xlFormulas, _
    LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
    MatchCase:=False, SearchFormat:=False).Activate

    However, this brings up the Run-time error '1004' Activate method of Range class failed. But when I just run the macro on its own as follows:

    Sub Test()

    Sheets("Station Capacity").Select
    Cells.find(What:=Sheets("FORMS").Range("L2").Value, After:=ActiveCell, LookIn:=xlFormulas, _
    LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
    MatchCase:=False, SearchFormat:=False).Activate
    End Sub

    The macro works and no error comes up! Very frustrating.

    Thanks in advance for your help

  6. #6
    Registered User
    Join Date
    07-01-2013
    Location
    Canberra, Australia
    MS-Off Ver
    Excel 2007
    Posts
    37

    Re: trouble with 'cells.find' returning error

    It will be in Column A of the "Station Capacity" sheets

  7. #7
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: trouble with 'cells.find' returning error

    Instead of Cells you should be looking in the column you expect to find what you are looking for.

    You should also reference the worksheet you are looking in.

    So if you want to look for the value in L2 on 'FORMS' in column A on 'Station Capacity' you would use something like this.
    Please Login or Register  to view this content.
    After this code you would check if rngFnd is Nothing, if it is tell the user (optional) and exit the code, otherwise continue on with the rest of the code.


    PS Can you add code tags when posting code?

    PPS Code tags are kind of a rule.
    Last edited by Norie; 05-20-2014 at 09:12 PM.

  8. #8
    Registered User
    Join Date
    07-01-2013
    Location
    Canberra, Australia
    MS-Off Ver
    Excel 2007
    Posts
    37

    Re: trouble with 'cells.find' returning error

    Thanks very much that is working! Really appreciate all your help and sorry about the lack of code tags
    Please Login or Register  to view this content.
    . Cheers.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Nested IF statements are returning FALSE values - cannot find error in code!
    By apex_chio in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 11-03-2013, 11:01 PM
  2. [SOLVED] Trouble with Find Error Checking: Is Nothing and Is Not Nothing returning the same results
    By k64 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 08-24-2013, 09:02 PM
  3. trouble with vba code for Find, Insert copied cells and find next
    By jgelbach in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 03-26-2012, 01:45 PM
  4. Find function returning error
    By Julesdude in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 09-10-2010, 10:45 AM
  5. Find Function returning error
    By duckboy1981 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 06-26-2009, 09:59 AM

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