+ Reply to Thread
Results 1 to 4 of 4

Compile Code error: Method or data member not found

Hybrid View

  1. #1
    Registered User
    Join Date
    12-17-2012
    Location
    Ireland
    MS-Off Ver
    Excel 2010
    Posts
    11

    Compile Code error: Method or data member not found

    Hello everyone,

    What I am trying to do sounds simple but I don't know where I'm wrong in the code.
    The process I want is: A person enters a number and clicks a button in sheet1, excel will search for a matching number in sheet2. When the number is found the information relating to that number is inserted into sheet1.
    I hope that is kinda clear.
    I had watched a youtube video to help with the code but even though I used the same code it wouldn't work for me. I think this is because I am using Excel 2010 and the video possibly had a different version.
    I have attached my practice sheet which has the error.

    I have tried to change a few things but still haven't got it to work. It only seems to be this line it is stuck on
    If Sheets("New Material").Cells(x, 1) = Information.Range("B2") Then
    Help is very much appreciated.

    Test code.xlsm
    Last edited by Help_Required; 11-27-2014 at 06:05 AM.

  2. #2
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,040

    Re: Help in solving code error

    Your post does not comply with Rule 1 of our Forum RULES. Your post title should accurately and concisely describe your problem, not your anticipated solution.

    Use terms appropriate to a Google search. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will be addressed according to the OP's experience in the forum: If you have less than 10 posts, expect (and respond to) a request to change your thread title. If you have 10 or more posts, expect your post to be locked, so you can start a new thread with an appropriate title.

    To change a Title go to your first post, click EDIT then Go Advanced and change your title, if 2 days have passed ask a moderator to do it for you.

    (This thread should receive no further responses until this moderation request is fulfilled, as per Forum Rule 7)
    Never use Merged Cells in Excel

  3. #3
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: Compile Code error: Method or data member not found

    You don't have a sheet whose codename is Information (the tab name and the codename are not the same) so you have to refer to it using Sheets("Information"):

    Sub searchdata()
        Dim lastrow                     As Long
        Dim count                       As Integer
    
        lastrow = Sheets("New Material").Cells(Rows.count, 1).End(xlUp).Row
        count = 0
    
        For x = 2 To lastrow
    
            If Sheets("New Material").Cells(x, 1).Value = Sheets("Information").Range("B2").Value Then
                Sheets("Information").Range("A8").Value = Sheets("New Material").Cells(x, 1).Value
                Sheets("Information").Range("B8").Value = Sheets("New Material").Cells(x, 3).Value
                Sheets("Information").Range("C8").Value = Sheets("New Material").Cells(x, 4).Value
                count = count + 1
    
    
            End If
        Next x
        If count = 0 Then
            Sheets("Information").Range("A8:C8").ClearContents
        End If
    End Sub
    Notes:
    1. I assumed that Info was supposed to also be Sheets("Information")
    2. You should always specify the .Value property rather than leaving it implicit.
    3. You were missing a Next statement which I have added
    4. I removed the Goto x statements as they made no sense.
    Everyone who confuses correlation and causation ends up dead.

  4. #4
    Registered User
    Join Date
    12-17-2012
    Location
    Ireland
    MS-Off Ver
    Excel 2010
    Posts
    11

    Re: Compile Code error: Method or data member not found

    Thank you Rory.

    I will remember the .Value next time

+ 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] Help Solving #REF error (INDIRECT function)
    By omni13 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-15-2014, 10:01 AM
  2. solving Equation N/A# Error
    By glaswal in forum Excel General
    Replies: 1
    Last Post: 06-28-2011, 10:46 AM
  3. Overflow Error - Solving Temperature using Antoine Equation
    By ggilzow in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 03-03-2011, 04:14 PM
  4. Help on solving an error..!!!
    By Hurundee in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 07-04-2008, 09:32 AM
  5. Problem solving div/0 error in a zero value cell
    By robert s in forum Excel General
    Replies: 5
    Last Post: 03-18-2006, 06:35 PM

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