に私はプログラムでVBAで行を選択していますが、それは私にこの上型の不一致エラーを与えている:私は間違っては、行を選択するVBA問題
Rows(Str(i) & ":" & Str(i)).Select
何をやっていますか?
For i = 5 To 1000
If Worksheets("5470").Cells(i, 2) = "" Then
Rows(Str(i) & ":" & Str(i)).Select
Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
Selection.Delete Shift:=xlUp
Exit For
End If
Next i