sheet2
Excelファイルの行数をカウントするVBAマクロを書いています
Dim cnt As Integer
Dim i As Integer
cnt = Range("Sheet2").Rows.Count ' giving error at this row
For i = 2 To cnt
t1 = "A" + CStr(i)
t2 = "B" + CStr(i)
Next i
しかし、それはエラーを出します:
オブジェクト「_global」のメソッド「Range」が失敗しました