2017-07-12 68 views
0

運行時錯誤'1004':無法在VBA中設置邊界類的線條樣式屬性。運行時錯誤'1004':無法在VBA中設置邊界類的線條樣式屬性

while running running the code for setting the range of range then then run time error and same code is running on different system。

的代碼是:

Range("A7:A" & LastRow).Borders.LineStyle = xlContinuous 

能否請你幫忙嗎?

+0

你可以發佈代碼嗎? – Vityata

+1

範圍(「A7:A」&LastRow).Borders.LineStyle = xlContinuous – user3432879

回答

0

嘗試這樣的:

Activesheet.Range("A7:A" & LastRow).Borders.LineStyle = xlContinuous

該錯誤可能來自,因爲你沒有提到的範圍內的WorkSheet或者因爲工作表已被鎖定。

+0

好的感謝您的幫助將試試這個 – user3432879

相關問題