以下のコードでは、次のエラーが発生します。Expected ')'
**CODE**
Set dicParentChild = CreateObject("Scripting.Dictionary")
For i = 1 To height
width = objExcel1.Application.WorksheetFunction.CountA(ob2.Columns(i))
If width > 2 Then
ReDim values(1 To (width - 2))
Key = ob2.Cells(i, 1).Value
For j = 3 To width
values(j - 2) = ob2.Cells(i, j).Value
Next j
dicParentChild.Add Key, values
End If
Next i
誰でもここで私を助けてもらえますか?
ありがとう