+ Reply to Thread
Results 1 to 6 of 6

Method not found error

Hybrid View

Will03 Method not found error 05-31-2014, 09:46 AM
HaHoBe Re: Method not found error 05-31-2014, 09:58 AM
Will03 Re: Method not found error 05-31-2014, 10:02 AM
HaHoBe Re: Method not found error 05-31-2014, 10:14 AM
Will03 Re: Method not found error 05-31-2014, 10:40 AM
Norie Re: Method not found error 05-31-2014, 03:34 PM
  1. #1
    Forum Contributor
    Join Date
    12-11-2012
    Location
    Guadalajara, Mexico
    MS-Off Ver
    Excel 2007 & 2013
    Posts
    101

    Method not found error

    Hello I have a new issue here with my programming and wondered if anyone could help resolve the issue... My macro opens a workbook makes some changes (at least is what its supposed to do) and then copies the sheet into my Macro book but I get this error Method or data member not found in the following line:

    Set wsSheet = wsTPCC.Sheets("TPCC")
    I dont know what is wrong and need some advise. Here is the complete code.

    Set wbPresenceSystem = Workbooks.Open(Filename:="H:\BX-HR\BX-INDUSTRIAL RELATIONS\HR REPRESENTATIVES\PRIVATE\HRSSC\Brazil\Training Hours Macro\Presence System Bruto.xls")
    If Not wbPresenceSystem Is Nothing Then
    
        Rows("1:1").Select
        Selection.Delete Shift:=xlUp
        Range("C1").Select
        ActiveCell.FormulaR1C1 = "CC"
        Columns("D:D").Select
        Selection.Insert Shift:=xlToRight
        Range("D1").Select
        ActiveCell.FormulaR1C1 = "MO"
        Range("A2").Select
        ActiveCell.FormulaR1C1 = "38697263859*"
        Columns("A:A").Select
        Selection.Replace What:="*", Replacement:="", LookAt:=xlPart, _
            SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
            ReplaceFormat:=False
        Cells.Select
        With Selection
            .HorizontalAlignment = xlGeneral
            .VerticalAlignment = xlCenter
            .Orientation = 0
            .AddIndent = False
            .IndentLevel = 0
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .Orientation = 0
            .AddIndent = False
            .IndentLevel = 0
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        Selection.RowHeight = 15
        Range("A1").Select
        Selection.AutoFilter
    
        Sheets("TreimentosPorCentroDeCusto (5)").Select
        Sheets("TreimentosPorCentroDeCusto (5)").Name = "TPCC"
    
    Set wsSheet = wsTPCC.Sheets("TPCC")
        Set wsPresenceSystem = wbTHMacro.Sheets("PS")
        wsSheet.Cells.Copy wsTempActivos.Range("A1")
    
    End Sub

  2. #2
    Forum Guru HaHoBe's Avatar
    Join Date
    02-19-2005
    Location
    Hamburg, Germany
    MS-Off Ver
    work: 2016 on Win10 (notebook), private: 365 on Win11 (desktop), 2019 on Win11 (notebook)
    Posts
    8,198

    Re: Method not found error

    Hi, Will03,

    you should try and dim all used Variables for any routine and use Option Explicit on top of the procedure.

    You never gave any value to wsTPCC in the sniplet you posted, and according to what I guess the variable should read wbTPCC in order to make the code work. Then again, the context is not clear from the sniplet.

    Ciao,
    Holger
    Use Code-Tags for showing your code: [code] Your Code here [/code]
    Please mark your question Solved if there has been offered a solution that works fine for you

  3. #3
    Forum Contributor
    Join Date
    12-11-2012
    Location
    Guadalajara, Mexico
    MS-Off Ver
    Excel 2007 & 2013
    Posts
    101

    Re: Method not found error

    Actually I will post the whole code for better understanding hopefully it will help to clarify my issue a little better...

    Option Explicit
    Sub TrainingHoursMacro()
    
    Dim wbTHMacro As Workbook, wsRegulares As Worksheet, wsRegularesDemitidos As Worksheet, wsTempActivos As Worksheet, wsTempJA As Worksheet, wsTempFit As Worksheet, _
    wsTempDemitidos As Worksheet, wsPS As Worksheet, wsResultados As Worksheet, wsDLList As Worksheet, wsSheet As Worksheet
    Dim wbRegularesBruto As Workbook, wsMovimentacao As Worksheet, wsDemitidos As Worksheet
    Dim wbTemporariosBruto As Workbook, wsTemporariosAtivos As Worksheet, wsJAAtivos As Worksheet, wsAprendizesFit As Worksheet
    Dim wbPresenceSystem As Workbook, wsTPCC As Worksheet
    
    Set wbTHMacro = Workbooks("Training Hours Macro.xlsm")
    Set wsRegulares = wbTHMacro.Sheets("Regulares")
    wsRegulares.Cells.ClearContents
    
    Set wbRegularesBruto = Workbooks.Open(Filename:="H:\BX-HR\BX-INDUSTRIAL RELATIONS\HR REPRESENTATIVES\PRIVATE\HRSSC\Brazil\Training Hours Macro\Regulares Bruto.xls")
    If Not wbRegularesBruto Is Nothing Then
    
    Set wsSheet = wbRegularesBruto.Sheets("Movimentacao")
        wsSheet.Cells.Copy wsRegulares.Range("A1")
            Set wsSheet = wbRegularesBruto.Sheets("Demitidos")
    Set wsRegularesDemitidos = wbTHMacro.Sheets("Regulares Demitidos")
        wsSheet.Cells.Copy wsRegularesDemitidos.Range("A1")
            wbRegularesBruto.Close False
    Else
        Exit Sub
                End If
                
    Set wbTemporariosBruto = Workbooks.Open(Filename:="H:\BX-HR\BX-INDUSTRIAL RELATIONS\HR REPRESENTATIVES\PRIVATE\HRSSC\Brazil\Training Hours Macro\Temporarios Bruto.xlsx")
    If Not wbTemporariosBruto Is Nothing Then
         
    Set wsSheet = wbTemporariosBruto.Sheets("Temporarios Ativos")
        Set wsTempActivos = wbTHMacro.Sheets("Temp Activos")
        wsSheet.Cells.Copy wsTempActivos.Range("A1")
    Set wsSheet = wbTemporariosBruto.Sheets("JA Ativos")
        Set wsTempJA = wbTHMacro.Sheets("Temp JA")
        wsSheet.Cells.Copy wsTempJA.Range("A1")
    Set wsSheet = wbTemporariosBruto.Sheets("Aprendizes FIT")
        Set wsTempFit = wbTHMacro.Sheets("Temp Fit")
        wsSheet.Cells.Copy wsTempFit.Range("A1")
    Set wsSheet = wbTemporariosBruto.Sheets("Demitidos")
        Set wsTempDemitidos = wbTHMacro.Sheets("Temp Demitidos")
        wsSheet.Cells.Copy wsTempDemitidos.Range("A1")
            wbTemporariosBruto.Close False
    Else
        Exit Sub
                End If
                
    Set wbPresenceSystem = Workbooks.Open(Filename:="H:\BX-HR\BX-INDUSTRIAL RELATIONS\HR REPRESENTATIVES\PRIVATE\HRSSC\Brazil\Training Hours Macro\Presence System Bruto.xls")
    If Not wbPresenceSystem Is Nothing Then
    
    
    
    Set wsSheet = wsTPCC.Sheets("TPCC")
        Set wsPresenceSystem = wbTHMacro.Sheets("PS")
        wsSheet.Cells.Copy wsTempActivos.Range("A1")
    
    End Sub

  4. #4
    Forum Guru HaHoBe's Avatar
    Join Date
    02-19-2005
    Location
    Hamburg, Germany
    MS-Off Ver
    work: 2016 on Win10 (notebook), private: 365 on Win11 (desktop), 2019 on Win11 (notebook)
    Posts
    8,198

    Re: Method not found error

    Hi, Will03,

    just guessing:
    '...
    Set wbPresenceSystem = Workbooks.Open(Filename:="H:\BX-HR\BX-INDUSTRIAL RELATIONS\HR REPRESENTATIVES\PRIVATE\HRSSC\Brazil\Training Hours Macro\Presence System Bruto.xls")
    If Not wbPresenceSystem Is Nothing Then
      Set wsSheet = wbPresenceSystem.Sheets("TPCC")
      Set wsTempActivos = wbTHMacro.Sheets("PS")
      wsSheet.Cells.Copy wsTempActivos.Range("A1")
      '...
      wbPresenceSystem.Close False
    Else
      Exit Sub
    End If
    '...
    Ciao,
    Holger

  5. #5
    Forum Contributor
    Join Date
    12-11-2012
    Location
    Guadalajara, Mexico
    MS-Off Ver
    Excel 2007 & 2013
    Posts
    101

    Re: Method not found error

    Still get the same error but I believe its because the sheet does not have the name yet... So confusing...

    Set wbPresenceSystem = Workbooks.Open(Filename:="H:\BX-HR\BX-INDUSTRIAL RELATIONS\HR REPRESENTATIVES\PRIVATE\HRSSC\Brazil\Training Hours Macro\Presence System Bruto.xls")
    If Not wbPresenceSystem Is Nothing Then
    
    Set wsSheet = wsTPCC.Sheets("TPCC")
        Set wsPresenceSystem = wbTHMacro.Sheets("PS")
        wsSheet.Cells.Copy wsTempActivos.Range("A1")
    
        Rows("1:1").Select
        Selection.Delete Shift:=xlUp
        Range("C1").Select
        ActiveCell.FormulaR1C1 = "CC"
        Columns("D:D").Select
        Selection.Insert Shift:=xlToRight
        Range("D1").Select
        ActiveCell.FormulaR1C1 = "MO"
        Range("A2").Select
        ActiveCell.FormulaR1C1 = "38697263859*"
        Columns("A:A").Select
        Selection.Replace What:="*", Replacement:="", LookAt:=xlPart, _
            SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
            ReplaceFormat:=False
        Cells.Select
        With Selection
            .HorizontalAlignment = xlGeneral
            .VerticalAlignment = xlCenter
            .Orientation = 0
            .AddIndent = False
            .IndentLevel = 0
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlCenter
            .Orientation = 0
            .AddIndent = False
            .IndentLevel = 0
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        Selection.RowHeight = 15
        Range("A1").Select
        Selection.AutoFilter
    
        Sheets("TreimentosPorCentroDeCusto (5)").Select
        Sheets("TreimentosPorCentroDeCusto (5)").Name = "TPCC"
        
    'Set wsSheet = wsTPCC.Sheets("TPCC")
        'Set wsPresenceSystem = wbTHMacro.Sheets("PS")
        'wsSheet.Cells.Copy wsTempActivos.Range("A1")
    Else
        Exit Sub
                End If

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

    Re: Method not found error

    wsTPPC is declared as a worksheet, worksheets don't have a Sheets property/method.

    Also, as far as I can see, you never actually give a value to wsTPCC or assign it to reference anything.
    If posting code please use code tags, see here.

+ 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. Compile Error Method or data member not found
    By ixelister in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 02-23-2014, 03:39 PM
  2. [SOLVED] error: Method or Data Member not found
    By CRIMEDOG in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-26-2013, 11:01 AM
  3. Compile Error: Method of data member not found (VBA)
    By vbatech in forum Excel Programming / VBA / Macros
    Replies: 22
    Last Post: 03-14-2012, 05:37 PM
  4. Compiler error: Method or data member not found
    By sathikbabu in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-23-2011, 02:51 AM
  5. [SOLVED] Compile Error Method or data member not found
    By ExcelMonkey in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-04-2005, 06:05 PM

Tags for this Thread

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