Results 1 to 3 of 3

Vlookup works fine, but not in Macro

Threaded View

  1. #1
    Valued Forum Contributor
    Join Date
    12-02-2009
    Location
    Austin, Tx
    MS-Off Ver
    Office 365 64-Bit, 2108, build 14326.21018
    Posts
    4,056

    Vlookup works fine, but not in Macro

    I'm trying to use the macro below to paste a Vlookup formula into my spreadsheet. When I run the macro, the results are all FALSE. However, if I pull out the Vlookup formula itself and apply it into the cells (in columns J and K), changing RC[9] or RC[10] to A2, it works perfectly. What am I doing wrong? I've been fooling with this for hours, and it seems so simple, but I'm not seeing it. Please help.

      Sub Test()
     Dim SrcWkb As Workbook
      Dim DstWkb As Workbook
    Dim LastRow As Long
    LastRow = Cells(Rows.Count, "A").End(xlUp).Row
     
       
       'Initialize the workbook object variables
       
        Set SrcWkb = Workbooks("OT Monitoring.xls")
                  
        'create the vlookup tables
        SrcWkb.Worksheets("APRData").Activate
        With SrcWkb.Worksheets("APRData")
            Columns("J:J").Insert Shift:=xlToRight
            Range("J1").FormulaR1C1 = "Earned OT"
                    
            Columns("K:K").Insert Shift:=xlToRight
            Range("K1").FormulaR1C1 = "Earned OT Cost"
                    
            With Range("I2", Range("I" & Rows.Count).End(xlUp)).Offset(, 1)
                .Formula = FormulaR1C1 = "=VLOOKUP(RC[-9],OTEarned,9,FALSE)"
            End With
        
            With Range("J2", Range("J" & Rows.Count).End(xlUp)).Offset(, 1)
                .Formula = FormulaR1C1 = "=VLOOKUP(RC[-10],OTEarned,10,FALSE)"
                         Selection.NumberFormat = "$#,##0.00"
            End With
                    
        End With
          
    End Sub
    Last edited by jomili; 03-01-2010 at 12:54 PM.

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