Results 1 to 4 of 4

Problem using vLookup in Excel VBA

Threaded View

  1. #1
    Registered User
    Join Date
    05-14-2011
    Location
    Adelaide, Australia
    MS-Off Ver
    Excel 2003
    Posts
    3

    Question Problem using vLookup in Excel VBA

    I have a spreadsheet into which I place a number in one column and it needs to get the matching location info from another spreadsheet (which is usually closed). I can do this using a vLookup in the cells, but this is clumsy and as the first spreadsheet already has some 4500 rows (and growing), it is slow and causes the file size to be very large.

    Therefore I have decided to do it in VBA, but I am having a problem with it that I cannot seem to solve. Any help would be appreciated......

    The VBA code I have in the first spreadsheet is as follows:

    (This is located in Sheet1 code so that it executes automatically when the value of the cell in column AP is changed in the current row)
    Option Explicit
    
    Private Sub Worksheet_Change(ByVal Target As Range)
    Dim intAssetRow, intBUILDnum As Integer
    Dim lRowSelected As Long
    
    intAssetRow = ActiveCell.Row
    
    If Target.Cells.Count > 1 Or Target.HasFormula Then Exit Sub
    
        On Error Resume Next
    
    ''''''''''''''''''''''''''''''''''''''''''''''''''
    'Update LOCATION Info in current row using vLookup
    ''''''''''''''''''''''''''''''''''''''''''''''''''
    
    If Not Intersect(Target, Range("AP2:AP65535")) Is Nothing Then
    
        Application.ScreenUpdating = True
        Application.EnableEvents = True
    
        If Not Target.Cells.Value = "" Then
        
        intBUILDnum = ("AP" & intAssetRow)
            
            Range("AO" & intAssetRow).Formula = "=VLookup(intBUILDnum, '\\ODFSLFS1\im\5.Records\Assets\Locations\[OD Locations Master List.xls]Building Master List'!$A$2:$I$335,5,FALSE)"
            Range("AO" & intAssetRow).Value = Range("AO" & intAssetRow).Value
            
            Range("AQ" & intAssetRow).Formula = "=VLookup(""SCRAPPED"", '\\ODFSLFS1\im\5.Records\Assets\Locations\[OD Locations Master List.xls]Building Master List'!$A$2:$I$335,2,FALSE)"
            Range("AQ" & intAssetRow).Value = Range("AQ" & intAssetRow).Value
        
        End If
        
    End If

    The second vLookup line works flawlessly, but the first does not. I need the vLookup to work with which ever row is currently active, so that this will work no matter how many rows there are. The other problem is that the value in column AP is not always SCRAPPED, it varies from row to row. So the value it does the vLookup on has to be a variable which is why the (working) second vLookup line is no good as it is.

    I can see what is happening with the first vLookup, it places the vLookup formula into the cell in column AO but intBUILDnum is a parameter that the spreadsheet cannot resolve, so it gives me a #NAME? error. I just don't know enough vba to be able to see the solution, though I suspect the code needs to be changed quite a lot to be able to do what I am asking.

    As I said before your help will be greatly appreciated......
    Last edited by Leith Ross; 05-14-2011 at 09:06 PM. Reason: Added Code Tags

Thread Information

Users Browsing this Thread

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

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