Q quinnj Aug 25, 2008 #1 I would like to turn all cells a Fill color (e.g., Red) based on the value in the first column of that row.
I would like to turn all cells a Fill color (e.g., Red) based on the value in the first column of that row.
J John C Aug 25, 2008 #2 Highlight row Conditional formatting Change drop down to Formula Is =$A1=yourvalue ... and choose your font to be red This is assuming the first column is A Hope this helps.
Highlight row Conditional formatting Change drop down to Formula Is =$A1=yourvalue ... and choose your font to be red This is assuming the first column is A Hope this helps.
G Glenn Aug 25, 2008 #3 quinnj said: I would like to turn all cells a Fill color (e.g., Red) based on the value in the first column of that row. Click to expand... 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.
quinnj said: I would like to turn all cells a Fill color (e.g., Red) based on the value in the first column of that row. Click to expand... 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.
G Glenn Aug 25, 2008 #5 John said: You don't need the IF statement... see my post above. Click to expand... Realized that right after I sent mine...and saw yours!
John said: You don't need the IF statement... see my post above. Click to expand... Realized that right after I sent mine...and saw yours!