EXCEL2003中,如何用vba把选定的区域用边框修饰,需要代码。(下面是原始状态和更改后的状态)

如果能用VBS,解答追加20分。... 如果能用VBS,解答追加20分。 展开
 我来答
madmlwt
推荐于2016-08-29 · TA获得超过238个赞
知道小有建树答主
回答量:292
采纳率:100%
帮助的人:226万
展开全部

比如对选定区域A1:E6边框修饰,实际上就是四周边框与内部的水平线与垂直线。

一般而言,用宏代码可以如下简化为:

Sub bkxs()

With Range("A1:E6")

    .Borders(xlInsideVertical).LineStyle = xlDot '垂直点线

    .Borders(xlInsideHorizontal).LineStyle = xlDot '水平点线

    .BorderAround ColorIndex:=0, Weight:=xlMedium '四周边框线(稍粗)

End With

End Sub

修饰的本意即是所选择的线型(LineStyle)设置、粗细设置(Weight)。具体可以通过录制宏的办法来选取。

⑴LineStyle的取值可以有以下几种,根据需要选择其一即可。

xlContinuous   

xlDash   

xlDashDot   

xlDashDotDot   

xlDot   

xlDouble   

xlSlantDashDot   

xlLineStyleNone   

⑵Weight的取值可以有以下几种,根据需要选择其一即可。

xlHairline 

xlThin 

xlMedium 

xlThick

特别说明:

代码 .BorderAround ColorIndex:=0, Weight:=xlMedium  包含对所选择线型的颜色和粗细设置。ColorIndex:=0是黑色,ColorIndex:=3红色。

以上代码可以通过选择不同区域、进行不同线型粗细设置测试。此仅供参考!

对选定区域A1:E6外边框为红色效果图如下所示:

 



misjita
2012-11-25 · TA获得超过359个赞
知道答主
回答量:174
采纳率:0%
帮助的人:157万
展开全部
这个最好自己去录制一个宏,理解一下,下次就不用求人了:
譬如选中图中A1:E6
其中 LineStyle、Weight、Clorindex (线条格式、线条粗细、线条颜色)自己可以设置的
With Range(A1:E6).Borders(xlEdgeTop)
.LineStyle = xlContinuous
.Weight = xlMedium
.ColorIndex = xlAutomatic
End With
With Range(A1:E6)..Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.Weight = xlMedium
.ColorIndex = xlAutomatic
End With
这是上、下外边框的设置

With Range(A1:E6).Borders(xlEdgeLeft)
.LineStyle = xlContinuous
.Weight = xlMedium
.ColorIndex = xlAutomatic
End With
With Range(A1:E6)..Borders(xlEdgeRight)
.LineStyle = xlContinuous
.Weight = xlMedium
.ColorIndex = xlAutomatic
End With
这是左、右外边框的设置

With Range(A1:E6).Borders(xlInsideVertical)
.LineStyle = xlContinuous
.Weight = xlMedium
.ColorIndex = xlAutomatic
End With
With Range(A1:E6)..Borders(xlInsideHorizontal)
.LineStyle = xlContinuous
.Weight = xlMedium
.ColorIndex = xlAutomatic
End With
这是内框垂直、水平方向边框的设置
追问
能改成VBS的吗?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
仙剑4之处
2012-11-25 · TA获得超过397个赞
知道小有建树答主
回答量:1269
采纳率:25%
帮助的人:232万
展开全部
03的不知道,我都是用07的直接录制了。格式的代码一般也没必要去记
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式