VBA Conditional formatting

  • Thread starter Thread starter Steven E.
  • Start date Start date
S

Steven E.

I can change the conditional formats of cells with the
FormatConditions Object. But is it possible to get the conditional
formats from a cell in Excel to show them in VBA
 
You should be able to just reverse the statement. Instead of

Selection.FormatConditions(1).Interior.ColorIndex = 52

use

nn = Selection.FormatConditions(1).Interior.ColorIndex

Is this what you are trying to get?
 

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