NguyenVietThinh08
Thành viên chính thức
- Tham gia
- 12/5/20
- Bài viết
- 86
- Được thích
- 4
Tình hình là em mới tìm được 1 function tìm kiếm nhiều điều kiện trên Web, tuy nhiên khi làm theo đúng hướng dẫn lại ra lỗi #name?; có bác nào gặp tình trạng tương tự giúp em được không ạ, em xin chân thành cảm ơn!
Option Explicit
Function VLookup2(Giatri1, Giatri2, cot2 As Integer, Vungtra As Range, cot As Integer)
Dim Sohang As Long, i As Long
Sohang = Vungtra.Rows.Count
On Error GoTo Error_VLOOKUP2
For i = 1 To Sohang
If Vungtra.Cells(i, 1) = Giatri1 And Vungtra.Cells(i, cot2) = Giatri2 Then
VLookup2 = Vungtra.Cells(i, cot)
Exit For
End If
Next
Exit Function
Error_VLOOKUP2:
VLookup2 = Err
End Function
Option Explicit
Function VLookup2(Giatri1, Giatri2, cot2 As Integer, Vungtra As Range, cot As Integer)
Dim Sohang As Long, i As Long
Sohang = Vungtra.Rows.Count
On Error GoTo Error_VLOOKUP2
For i = 1 To Sohang
If Vungtra.Cells(i, 1) = Giatri1 And Vungtra.Cells(i, cot2) = Giatri2 Then
VLookup2 = Vungtra.Cells(i, cot)
Exit For
End If
Next
Exit Function
Error_VLOOKUP2:
VLookup2 = Err
End Function