Hãy thử xác nhận cả hai tham số chức năng và kiểm tra đối tượng được trả về Nothing
Trên cùng Sub
là một bài kiểm tra minh họa cách kiểm tra kiểu trả về củaFunction
Option Explicit
Public Sub TestPart()
Dim result As Range
Set result = FindPartNumber(123, ThisWorkbook) 'Make sure that "result" is Set
If Not result Is Nothing Then Debug.Print result.Address 'Check result object
End Sub
'If String/Workbook params are missing, or part is not found, this returns "Nothing"
Public Function FindPartNumber(ByVal part As String, ByVal mplWb As Workbook) As Range
Dim findRow As Range, ws As Worksheet
If mplWb Is Nothing Or Len(part) = 0 Then Exit Function 'Invalid file (mplWb)
With mplWb
On Error Resume Next 'Expected error: sheet name not found (sheet doesn't exist)
Set ws = .Worksheets("Item Master")
If Not ws Is Nothing Then
With ws.Range("A1:A" & ws.Cells(ws.Rows.Count, "A").End(xlUp).Row)
Set findRow = .Find(What:=part, _
LookIn:=xlValues, _
LookAt:=xlWhole, _
MatchCase:=True)
If Not findRow Is Nothing Then Set FindPartNumber = findRow
End With
End If
End With
End Function
.
Ghi chú
Để làm cho chức năng chung chung hơn (có thể sử dụng lại), hãy di chuyển tất cả các phần được mã hóa cứng bên ngoài
Option Explicit
Public Sub TestPart()
Dim ws As Worksheet, result As Range, searchRange As Range
Set ws = ThisWorkbook.Worksheets("Item Master")
Set searchRange = ws.Range("A1:A" & ws.Cells(ws.Rows.Count, "A").End(xlUp).Row)
Set result = FindPartNumber(123, searchRange)
If Not result Is Nothing Then Debug.Print result.Address
End Sub
'If String/Range params are missing, or part is not found, this returns "Nothing"
Public Function FindPartNumber(ByVal part As String, ByVal rng As Range) As Range
Dim findRow As Range
If rng Is Nothing Or Len(part) = 0 Then Exit Function 'Invalid search range or part
Set findRow = rng.Find(What:=part, _
LookIn:=xlValues, _
LookAt:=xlWhole, _
MatchCase:=True)
If Not findRow Is Nothing Then Set FindPartNumber = findRow
End Function