Jan 28, 2004 #1 jh3016 Programmer Jun 6, 2003 148 US I have an Excel spreadsheet: Cell A2 = 95 I would like cell A3 to turn red if Cell A2 >95 and turn green if Cell A2 <95. Is there a way to do that? Thanks in advance.
I have an Excel spreadsheet: Cell A2 = 95 I would like cell A3 to turn red if Cell A2 >95 and turn green if Cell A2 <95. Is there a way to do that? Thanks in advance.
Jan 28, 2004 #2 ETID Programmer Jul 6, 2001 1,867 US Highlite row 3... use conditional formatting...from menu Format>Conditional Formatting... in condition 1 change the drop down "cell value is" to "formula is" type =if(A2>95,true,false) set the "pattern" to red ----------- in condition 2 change the drop down "cell value is" to "formula is" type =if(A2<95,true,false) set the "pattern" to green Upvote 0 Downvote
Highlite row 3... use conditional formatting...from menu Format>Conditional Formatting... in condition 1 change the drop down "cell value is" to "formula is" type =if(A2>95,true,false) set the "pattern" to red ----------- in condition 2 change the drop down "cell value is" to "formula is" type =if(A2<95,true,false) set the "pattern" to green
Jan 30, 2004 Thread starter #3 jh3016 Programmer Jun 6, 2003 148 US Thanks, this worked great!!! Upvote 0 Downvote