+ Reply to Thread
Results 1 to 2 of 2

runtime 438 with vlookup worksheetfunction

Hybrid View

  1. #1
    Registered User
    Join Date
    08-21-2012
    Location
    Crewe, England
    MS-Off Ver
    Excel 2007
    Posts
    37

    runtime 438 with vlookup worksheetfunction

    Hello Excel Forum,
    I'm writing a macro that populates a list then uses a vlookup to retrieve a value from another worksheet - pretty straightforward. But, I get Runtime error 438 (Ojbect doesn't support this property or method) on the line containing the worksheetfunction. I've typed the "application.worksheetfunction" line into the Immediate window and the expected result was printed. So, I can't figure out why I get the error. Any help will be much appreciated.

    Sub testForecastComparison()
    
        Dim RFSheet As Worksheet
        Dim headerRow As Integer
        Dim rowOffset As Integer
        Dim RFForumla As String, SDRevFormula As String
        Dim cpnPlanbook As Workbook, cpnRPFSheet As Worksheet
        Dim RDCell As Range, FRACell As Range
        
        Set RFSheet = ThisWorkbook.Worksheets("Revenue Forecast Analysis")
        headerRow = 6       'defines where table starts
        rowOffset = 0       'defines next row to fill
        
        Set cpnPlanbook = Workbooks("Accounts Rev tracker Prototype.xlsm")
        Set cpnRPFSheet = cpnPlanbook.Worksheets("Revenue Planner-Forecast")
    
        For Each RDCell In ThisWorkbook.Worksheets("Revenue Data").Range("Table1").Columns(2).Cells
            If RDCell.Offset(0, 7).value > 0 Or RDCell.Offset(0, 8).value > 0 Then
                rowOffset = rowOffset + 1
                Set FRACell = RFSheet.Range("B" & headerRow + rowOffset)
                FRACell.value = RDCell.value
                FRACell.Offset(0, 1).value = Application.worksheetfuntion.VLookup(RDCell.value, cpnRPFSheet.Range("C:G"), 4, False)
            End If
        Next RDCell
    
    End Sub
    Thanks

  2. #2
    Registered User
    Join Date
    08-21-2012
    Location
    Crewe, England
    MS-Off Ver
    Excel 2007
    Posts
    37

    Re: runtime 438 with vlookup worksheetfunction

    I've spotted my spelling mistake (no 'c' in worksheetfunction). Apologies to anyone that has taken the time to read this thread...

+ 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