我的以下代码显示错误消息“应用程序定义或对象定义错误”,我不知道为什么。你能看看并帮我解决问题吗?
Private Sub CommandButton1_Click()
j = 3
For i = 1 To 46
Sheets("Income").Range(Cells(6, j), Cells(51, j)).Formula = "=VLOOKUP($B6,[" & Cells(5, i + 2).Value & ".xlsx]2 Intercompany markup!$A$1:$E$70,4,FALSE)"
j = j + 1
Next i
End Sub
谢谢你的帮助。