条件格式:根据与另一个单元格的比较为单元格着色

Conditional formatting: color a cell based on a comparison with another cell

考虑 Google 工作表 中的以下 table:

       |   A     |   B   |  C
   ----+---------+-------+--------
    1  | product | price | target
    2  | apple   | 5     | 6
    3  | pear    | 7     | 4 
    4  | banana  | 2     | 2

我想做的是应用一些条件格式,但我无法弄清楚这一点,所以我希望有人能帮助我。

我想达到的目标:

有什么办法可以实现吗?每当目标变为绿色时,对我来说,这意味着该产品处于购买区域,我应该更仔细地查看它。

非常感谢任何帮助!

绿色:

=((C2=B2)+(B2<C2))*(C2<>"")

红色:

=B2>C2