+ Reply to Thread
Results 1 to 4 of 4

Range variable not working in match command

Hybrid View

  1. #1
    Registered User
    Join Date
    09-16-2009
    Location
    Aurora
    MS-Off Ver
    Excel 2003
    Posts
    8

    Range variable not working in match command

    I cannot get my code to recognize the variable punchrange
    There is a sheet called HPpunch
    There is data in B5:V16 (dollar values)
    I keep getting the error type mis match
    I have tried changing quite a few then but to no avail.
    The text box only displays the value there is no input by the user. I just needed somewere to display the final value

    Can sombody helpm with this

    Thanks

    Jamie Lill


    Private Sub TextBox160_Change()
    Dim PunchRange As Range
    Dim Cnumber As Integer
    Set PunchRange = Sheets("HPpunch").Range("B5:V16")
    If ListBox11.Text = "HP" Then
    Cnumber = "=Match(ListBox16.Value, PunchRange)"
    TextBox160.Text = "=VLookup(ListBox13, PunchRange, Cnumber,)"
    End If
    End Sub
    Last edited by jamielill; 10-02-2009 at 04:12 PM. Reason: no code tags

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Please help with range

    Please re-read the forum rules, and then edit your post to add code tags and to have a descriptive title.

    Thanks.
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Range variable not working in match command

    Thanks.

    What exactly are you trying to do? You can't intersperse worksheet formulas with VBA as you are doing, and MATCH is only valid when the range is a single row or column.

  4. #4
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Range variable not working in match command

    Hello jamielill,

    If I interpreted your post correctly, this version of the macro should do what you want. However, it doesn't include error checking which should be added.
    Private Sub TextBox160_Change()
    
      Dim PunchRange As Range
      Dim Cnumber As Integer
      Dim FoundIt As Range
      
        Set PunchRange = Sheets("HPpunch").Range("B5:V16")
        
          If ListBox11.Text = "HP" Then
             Set FoundIt = PunchRange.Find(ListBox16, , xlValues, xlWhole, _
                                           xlByColumns, xlNext, False)
             If Not FoundIt Is Nothing Then
                Cnumber = FoundIt.Row - PunchRange.Row + 1
                TextBox160.Text = WorksheetFunction.VLookup(ListBox13, PunchRange, Cnumber, False)
             End If
          End If
    
    End Sub
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

+ 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