Font Style Properties

F

font.style

With a macro I want to find the property of a font style so if the value is
italic then, else to sometime else.

Many Thanks
Stafford
 
J

Jacob Skaria

If Range("A1").Font.Italic = True then

End If

//Range("A1").Font.Bold
//Range("A1").Font.Strikethrough

If this post helps click Yes
 
Top