Post by TristanIs there any way that I can get the hex value of a color then pass
it into a string?
The easiest way I know is to use a Variant to convert it for you.
Dim s As String
Dim c As Color=&cFF00FF
Dim v As Variant
v=c
s=v
s should now contain "&hFF00FF"
Terry