안녕하세요
      Set wsA = ThisWorkbook.Sheets("sheet1")
     Set wsB = ThisWorkbook.Sheets("sheet2") 

    wsA.Cells(matchRow, "E").Value = wsB.Cells(i, "J").Value
     wsA.Cells(matchRow, "F").Value = wsB.Cells(i, "K").Value
      wsA.Cells(matchRow, "G").Value = wsB.Cells(i, "L").Value
      wsA.Cells(matchRow, "H").Value = wsB.Cells(i, "M").Value

위 코드는 에러없이 잘 작동되구요. 그런데 셀 4개를 각각 작업하던걸

한방에 끝내려고 아래와 같이 수정해서(동일하다고 생각해서) 하면

런타임에러가 나는데(첨부 그림파일)

표현식이 틀린건가요?
wsA.Range(Cells(matchRow, 5), Cells(matchRow, 8)).Value =   '오른쪽이 넘 길어 보여드리기 개행
wsB.Range(Cells(i, 10), Cells(i, 13)).Value

수정해주시면 감사드리겠습니다.
aaa.jpg