Is is possible to apply separate formatting to multiple different Excel table columns?

12,390

You can format columns to unlock cells which are user-input, and then set conditional formatting for columns in your table specifying the formula condition =CELL("protect", ) as condition. Or you can set the following udf:

Function IsFormula(cell)
  IsFormula = cell.HasFormula
End Function

and then set an analogous conditional formatting.

Share:
12,390

Related videos on Youtube

Manoj Varma
Author by

Manoj Varma

Updated on September 17, 2022

Comments

  • Manoj Varma
    Manoj Varma over 1 year

    I have some calculated columns in an Excel (2007) table. I'd like to distinguish them visually from the user-input columns in some way, but without losing the nifty automatic row banding. It looks like I can create a "table style", but only the first and last columns can get separate formatting. Is there any way to format arbitrary columns (or at least the last n columns instead of just the last one)?

  • Manoj Varma
    Manoj Varma over 13 years
    Thanks for the answer. Wouldn't conditional formatting lose me the rest of the table formatting though? Specifically the row banding?
  • Toc
    Toc over 13 years
    Yes, conditional formatting overwrites other formatting properties. It could not be different. You have to think a conditional formatting that is compatible with row banding. For example, a row banding with slight different colors than the other ones, or with different colors for text. About conditional formatting for row banding you can see google.com/search?q=row+banding+conditional+formatting+excel