码迷,mamicode.com
首页 > 编程语言 > 详细

VBA设置单元格格式

时间:2015-06-05 17:55:26      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:vba

Option Explicit
Sub setFormat()
    Dim SelectionCell As Range
    Set SelectionCell = Worksheets("Sheet1").Range("A1:D4")
    With SelectionCell
         .Borders.Weight = 4
         .Font.Size = 10
         .Font.Name = "宋体"
         .Interior.ColorIndex = 34
    End With
End Sub


VBA设置单元格格式

标签:vba

原文地址:http://mstudy.blog.51cto.com/3203813/1658830

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!