View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
John C[_2_] John C[_2_] is offline
external usenet poster
 
Posts: 1,358
Default Conditional Formatting for an entire row or column?

You don't need the IF statement... see my post above.
--
John C


"Glenn" wrote:

quinnj wrote:
I would like to turn all cells a Fill color (e.g., Red) based on the value in
the first column of that row.


Use an absolute reference for the column. For data in row 1 starting in column A:

=IF($A1="your value",1,0)

Copy across as needed.