indi visual
Member
Why is it when I run this code the shade of gray color is not what's it's supposed to be? (in Excel it's the shade of gray in the far most bottom left corner of the theme colors).
With Selection.Font
.Name = "Kozuka Gothic Pro L"
.FontStyle = "Bold"
.Size = 20
.ThemeColor = xlThemeColorDark1
.TintAndShade = -0.499984741
.ThemeFont = xlThemeFontNone
End With
I know I can can copy another cell and paste the correctly formatted color over it just fine. But I wanted to avoid .copy and .paste if at all possible.
With Selection.Font
.Name = "Kozuka Gothic Pro L"
.FontStyle = "Bold"
.Size = 20
.ThemeColor = xlThemeColorDark1
.TintAndShade = -0.499984741
.ThemeFont = xlThemeFontNone
End With
I know I can can copy another cell and paste the correctly formatted color over it just fine. But I wanted to avoid .copy and .paste if at all possible.