Conditional Format based on other cell

M

matrix7410

Hi, I have a situation where I have 2 Columns. Column1 has listing of
movies, and column 2 has Weekly Gross Data, so I want the column 1(the
name of the movie) to have green color if column2 has more than $20m,
but when I enter the number for Week2 (which would be my column3) I
want the column1 to change color automatically based on the number on
Column3. Can that be possible?
 
R

Ragdyer

Are you formatting on *individual* weeks (columns), or are you *totaling*
the weeks to get to 20M?

Using "Formula Is" in Column A for *individual* weeks,
Assuming 10 weeks of record keeping:

=COUNTIF(B1:K1,">=20000000")>0

Using "Formula Is" in Column A for *totaling* weeks,
Assuming 10 weeks of record keeping:

=SUM(B1:K1)>=20000000
 
Top