Estou recebendo um erro definido pelo aplicativo ou pelo objeto?

Estou recebendo um erro definido pelo aplicativo ou pelo objeto?

Continuo recebendo o erro na minha instrução if, não tenho certeza do que estou fazendo de errado, qualquer ajuda com isso seria muito apreciada.

lr = ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Row

For i = 2 To lr

     DynamicLR = Sheets("RA Inventory").Cells(Rows.Count, 1).End(xlUp).Row


    'If Application.WorksheetFunction.IsNumeric(Application.WorksheetFunction.Match(ActiveSheet.Range("D" & i), Sheets("RA Inventory").Range("D2:D" & DynamicLR), 0)) = False Then
    If Application.WorksheetFunction.IfError(Application.WorksheetFunction.IsNumber(Application.WorksheetFunction.Match(ActiveSheet.Range("D" & i), Sheets("RA Inventory").Range("D:D").Select, 0)), False) = False Then

         ActiveSheet.Range("A" & i).Select
         Selection.Copy
         Worksheets("RA Inventory").Activate
         ActiveSheet.Range("A" & DynamicLR).Select
         ActiveSheet.Paste

Obrigado

Responder1

Se você está falando sobre o que não foi comentado if- você não precisa selecionar e pode usar o açúcar sintático:

If [iferror(isnumber(match(A1,B:B,0)),false)] = True Then
     MsgBox ("True")
     Else: MsgBox ("False")
end if

Apenas trate os intervalos como faria com funções, por exemploSheet1!B:B

Você também pode omitir o worksheetfunctionque permitirá erros (se sua fórmula retornar um erro)

With Application
   if .iferror(.isnumber(.match( ... 
end with

Essencialmente, sua 'correspondência' não está referenciando os dados corretamente. Erro 2015 - vejaesta documentação


Um problema maior pode sercomovocê está fazendo isso. Você deve usar o tratamento de erros para lidar com o erro. Isso seria melhor -

Sub test()
lr = ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Row

For i = 2 To lr

    x = Application.Match(ActiveSheet.Range("B" & i), Sheets("Sheet1").Range("B1:B" & lr), 0)
    If IsNumeric(x) Then
         MsgBox (x)
    End If
Next


End Sub

informação relacionada