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
Bookmarks