Range(Cells)
属性引发对象定义或应用程序定义的错误:1004。
我试图使用Range(Cells)属性指定范围,因为我的行和列索引是变量。
变量声明:
A = ws1.Range("1:1").Find(ws2.Cells(1, "J").Value).Column
H = ws1.Range("1:1").Find(ws2.Cells(1, "AT").Value).Column
ws1LastRow = ws1.Cells(Rows.Count, "A").End(xlUp).Row + 1
错误行:
ws1.Range(Cells(ws1LastRow, A), Cells(ws1LastRow, H)).Interior.ColorIndex = 4
下面的行仅用于突出显示所选范围。由于某种原因,它给了我指出的错误。
非常感谢您的帮助。