Results 1 to 11 of 11

Vlookup not working

Threaded View

  1. #1
    Registered User
    Join Date
    04-17-2014
    Location
    Adelaide, Australia
    MS-Off Ver
    Excel 2007
    Posts
    5

    Unhappy Vlookup not working

    I have a workbook with multiple worksheets and a user form that has two combo boxes, the first one fills from a named range and when a user selects a value from this combo box it fills another combo box. When a user selects a value from this combo box I need Vlookup to find the value in a named range and column 1 (left) is the same column that fills the combo box so the value that is being searched for has to be identical to the value found but the result always comes back empty?

    I'm passing two variables to Vlookup - the search name (from the selected combo box) and an integer for the column offset. The first sub is activated when the user clicks button CmdDetails on the form.

    Here is the code
    Private Sub CmdDetails_Click()
         
        Dim Name As String
        Dim ColoffSet As Integer
        
           Name = CmbArea.Value
           ColoffSet = 5
               
          Call AreaChange(Name, ColoffSet)
            
       
         
    End Sub
    [/CODE]

    Private Sub AreaChange(Name, ColoffSet)

    Dim R As Range
    Dim T As Range
    Dim Result As Variant
    On Error Resume Next
    Err.Clear
    For Each R In Range("Table")
    Result = Application.WorksheetFunction.VLookup(Name, R, ColoffSet, False)
    T.AddItem Result

    'If Err.Number = 0 Then (I took the error handling out because the vbYesNoCancel button won't cancel and I have to end the program to get out of it using Ctrl Alt Delete, but if I leave it in it says value not found)
    'Else
    'MsgBox ("result not found"), vbYesNoCancel

    'End If
    Next R

    Call AddRoom(T)

    End Sub
    [/CODE]

    'Forget the call to AddRoom... I don't get that far!

    If I toggle a breakpoint on the For each line I can see that the name value is being passed to the function (hovering the mouse over the variables) and when it cycles through the table R (named range) I can see that the value is found but not passed to the result variable which remains empty.

    Any ideas?
    Last edited by hallofus; 04-30-2014 at 06:01 AM. Reason: to make the code easier to read

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] VLOOKUP not working
    By x65140 in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 12-10-2013, 09:43 AM
  2. [SOLVED] Vlookup not working
    By excellearner121 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 11-04-2013, 08:57 PM
  3. [SOLVED] Vlookup is not working and giving =vlookup(B2,$T$2:$U$135,2,false) this kind of values.
    By yogeshsharma1981 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 07-09-2013, 04:08 PM
  4. Vlookup not working
    By vamshi57 in forum Excel General
    Replies: 8
    Last Post: 01-28-2010, 07:42 AM
  5. VLOOKUP Value Not Working
    By Dunda in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 08-17-2009, 03:10 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