Friday, September 21, 2012

How to Format Border Styles, Font Styles in Excel using VBA Macro

Excel VBA Macro To Change Border Styles
Sub BorderStyles()
'Style1: Selection.Borders.LineStyle = xlContinuous
'Style2: Selection.Borders.LineStyle = xlDouble
End Sub
'Macro To Change Font Styles
Sub FontFormats()
With Selection.Font
.Name = "Arial"
.Size = 12
.Italic = True
.ColorIndex = 10
.Bold = True
.Underline = True

End With
End Sub

Thanks,Tamatam

No comments:

Post a Comment

Hi User, Thank You for visiting My Blog. If you wish, please share your genuine Feedback or comments only related to this Blog Posts. It is my humble request that, please do not post any Spam comments or Advertising kind of comments, which will be Ignored.

Featured Post from this Blog

How to compare Current Snapshot Data with Previous Snapshot in Power BI

How to Dynamically compare two Snapshots Data in Power BI Scenario: Suppose we have a sample Sales data, which is stored with Monthly Snapsh...

Popular Posts from this Blog