Im having in issue with the font color in VBA that I have never run into before.
Using Excel 10
I have cell that are filled in with colors
It is Aqua Accent 5 40% Lighter. ( at least thats what pops up when i move my mouse to that color on the fill drop down box from the main ribon, it is the middle of the 5 Light blue stack second from the right in that drop down box)
Any way when i record the macro to change the color of the font in the cell to that same color (from black so text in that box wont be visable)
the macro records to change the color to Aqua Accent 5
but no color or shade information (this is the color that is on top of that 5 block stack of blue in the drop down box)
the macro that is recorded is
it shows tint and shade 0.3999ect but how do i translate that into 40%lighter.
also i will be doing this for many differetn colors so i need to know how to fix it in general please so while i always greatfull for the help i get here I will need more than just this colors "code" i will need to know how to find the color codes my-self
Thanks again for all the great help i get here
Using Excel 10
I have cell that are filled in with colors
It is Aqua Accent 5 40% Lighter. ( at least thats what pops up when i move my mouse to that color on the fill drop down box from the main ribon, it is the middle of the 5 Light blue stack second from the right in that drop down box)
Any way when i record the macro to change the color of the font in the cell to that same color (from black so text in that box wont be visable)
the macro records to change the color to Aqua Accent 5
but no color or shade information (this is the color that is on top of that 5 block stack of blue in the drop down box)
the macro that is recorded is
Code:
Sub Macro3()
'
' Macro3 Macro
'
'
Range("N42:Z43").Select
With Selection.Font
.ThemeColor = xlThemeColorAccent5
.TintAndShade = 0.399975585192419
End With
Range("AG38").Select
End Sub
it shows tint and shade 0.3999ect but how do i translate that into 40%lighter.
also i will be doing this for many differetn colors so i need to know how to fix it in general please so while i always greatfull for the help i get here I will need more than just this colors "code" i will need to know how to find the color codes my-self
Thanks again for all the great help i get here