Google 工作表上的条件格式自动填充以适应可变条件

Conditional Formatting Autofill on Google Sheets for Variable condition

我在这里找了很多地方,但找不到针对我的问题的解决方案,所以我注册了一个帐户来询问它。

在 Google 表格中,我做了一个 sheet 来宣布体育比赛的获胜者,例如:

玩家1 |玩家2 | player1分数| player2score

玩家3 |玩家4 | player3分数| player4score

玩家5 |玩家6 | player5分数| player6score

等等

我所做的是,如果 player1score 大于 player2score,那么 Player1 是突出显示为绿色,如果相反,则突出显示为红色,反之亦然 Player 2,使用条件格式:=player1score>player2score绿色和 =player2score>player1score 红色。 (带有小区 ID)

我有大约 100 行奇数,我想向下拖动并为 sheet 中的所有其他玩家自动填充,但是当我这样做时,它会应用条件格式,比如说, Player5 与 player1score 和 player2score 相比,而不是 player5score 和 player6score,因为自定义公式的值没有递增

有没有一种方法可以自动递增它而无需手动将它们全部写入?

黄色:

=($C2=$D2)*(C2<>"")

绿色:

=(C2=MAX($C2:$D2))*($C2<>"")

红色:

=(C2=MIN($C2:$D2))*($C2<>"")

注意范围 A2:B 或 C2:D

here's the sheet