answersLogoWhite

0

The cell format and font format.
The following is a very simple macro that will change the font in the selected cell to blue:

Sub Make_Blue

'

With Selection.Font

.Color = -4165632

.TintAndShade = 0

End With

End Sub

From the macro, you can see that the VB definition of color is numeric and is stored as Font.Color.

User Avatar

Wiki User

15y ago

What else can I help you with?