Excel Range 跟 cells 、解決Range(Cells(1, 1), Cells(5, 5))的錯誤
雖然 cells 可以用數字,但是會造成切換頁的問題
只要不是在當前的頁面執行
就會出問題,所以要指定頁表
1、使用cells錯誤
Range(Cells(1, 1), Cells(5, 5))
寫法如下
2、cells前面要加頁表
With ShtBaseImg
.Range(.Cells(1, 1), .Cells(5, 5)).Interior.ThemeColor = xlThemeColorAccent1
End With
只要不是在當前的頁面執行
就會出問題,所以要指定頁表
1、使用cells錯誤
Range(Cells(1, 1), Cells(5, 5))
寫法如下
2、cells前面要加頁表
With ShtBaseImg
.Range(.Cells(1, 1), .Cells(5, 5)).Interior.ThemeColor = xlThemeColorAccent1
End With
留言
張貼留言