Niezgodność typu Excel VBA dla # N / A

Mam ten fragment kodu

    With Data.Cells(rowMatch, GWECol)
        .Value = Cmp.Cells(i, GWENetPr)
        .AddComment
        .Comment.Text Text:=UCase(Environ("UserName")) & ":" & vbNewLine _
            & "Comment: " & Cmp.Cells(i, CommCol) & vbNewLine _
            & "Transaction: " & Cmp.Cells(i, QRTran) & vbNewLine _
            & "QR Pr: " & Cmp.Cells(i, QRPr) & vbNewLine _
            & "QR WD: " & Cmp.Cells(i, QRWD) & vbNewLine _
            & "QR WD All: " & Cmp.Cells(i, QRWDA) & vbNewLine _
            & "QR XPr: " & Cmp.Cells(i, QRXPr) & vbNewLine _
            & "QR XAll: " & Cmp.Cells(i, QRXAll) & vbNewLine _
            & "GWE Pr: " & Cmp.Cells(i, GWEPr) & vbNewLine _
            & "GWE All: " & Cmp.Cells(i, GWEAll) & vbNewLine _
            & "GWE XPr: " & Cmp.Cells(i, GWEXPr) & vbNewLine _
            & "GWE XAll: " & Cmp.Cells(i, GWEXAll)
        .Comment.Shape.TextFrame.AutoSize = True
    End With

Gdzie Cmp.Cells (i, X) odnosi się do komórek, które mogą mieć błąd # N / A (nieudany VLOOKUP).

Czy jest możliwe, aby kod po prostu znalazł się w # N / A jako łańcuch lub po prostu zostawił go pusty? W tej chwili, gdy jedna z przywoływanych komórek jest # N / A, porcja nie powiedzie się i żaden tekst komentarza nie zostanie w ogóle dodany.

Dzięki!

questionAnswers(4)

yourAnswerToTheQuestion