Excel如何把有資料的範圍加上框線 |
答題得分者是:w45
|
SENFO
一般會員 發表:13 回覆:22 積分:7 註冊:2006-07-10 發送簡訊給我 |
想請問一下
Range=Worksheet.OlePropertyGet("Cells",2,4); Range.OlePropertySet("Value","設定框線"); Cell=Range.OlePropertyGet("Borders"); Cell.OlePropertySet("LineStyle",xlContinuous); Cell.OlePropertySet("Weight",xlThin); Cell.OlePropertySet("ColorIndex",xlAutomatic); 這個設定框線的部分是一格一格的設定,那如果我要設定由(1,1)到(10000,10000)的話會花很多時間,有什麼方法可以一次就把有資料的範圍全部加框線呢(假設我已經得到最尾巴的行與列了) |
pcboy
版主 發表:177 回覆:1838 積分:1463 註冊:2004-01-13 發送簡訊給我 |
for (i=1; i ; i<=10000) {
for (j=1; j ; j<=10000) { Range=Worksheet.OlePropertyGet("Cells",i,j); Range.OlePropertySet("Value","設定框線"); Cell=Range.OlePropertyGet("Borders"); Cell.OlePropertySet("LineStyle",xlContinuous); Cell.OlePropertySet("Weight",xlThin); Cell.OlePropertySet("ColorIndex",xlAutomatic); } }
------
能力不足,求助於人;有能力時,幫幫別人;如果您滿意答覆,請適時結案! 子曰:問有三種,不懂則問,雖懂有疑則問,雖懂而想知更多則問! |
w45
一般會員 發表:25 回覆:29 積分:15 註冊:2006-07-13 發送簡訊給我 |
|
SENFO
一般會員 發表:13 回覆:22 積分:7 註冊:2006-07-10 發送簡訊給我 |
這樣這個迴圈會花很多時間,我想要那種一次設定範圍內所有框框上框線的方法
===================引 用 文 章=================== for (i=1; i ; i<=10000) { for (j=1; j ; j<=10000) { Range=Worksheet.OlePropertyGet("Cells",i,j); Range.OlePropertySet("Value","設定框線"); Cell=Range.OlePropertyGet("Borders"); ??? Cell.OlePropertySet("LineStyle",xlContinuous); ??? Cell.OlePropertySet("Weight",xlThin); ??? Cell.OlePropertySet("ColorIndex",xlAutomatic); ? } } |
SENFO
一般會員 發表:13 回覆:22 積分:7 註冊:2006-07-10 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |