I\'m trying to set a public const of a color in my VBA code. Normally, I can use:
Dim BLUE As Long BLUE = RGB(183, 222, 232)
However, ther
You'll have to reverse the bytes into order
BLUE = &HE8DEB7
to get the correct color value.