Can't get sensible clear colours in Excel 2003

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Computer crashed so re-installed Office 2003. Ticked for updates and now find
that the colours are different e.g. I can no longer get a vibrant red. Using
this new "Custom" option still leaves me with a red that is nearer black.

Has anyone got the answer please?

Many thanks.
 
Chris,

Go to Tools / Options... Color tab, and press Reset.

OR try one of these macros:

Sub SetRed()
ActiveWorkbook.Colors(3) = RGB(255, 0, 0)
End Sub

Sub ResetColors()
ActiveWorkbook.ResetColors
End Sub

HTH,
Bernie
MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top