Google sheet 中 finished/due 任务的条件格式

Conditional formatting in Google sheet for finished/due tasks

我在 Google sheet 中构建了一个简单的任务跟踪器。

B 列处理状态(进行中、完成)和到期日期列 C。
我已经创建了公式:将颜色设置为绿色的 B 的完全匹配和设置红色的 C 的今天之前的日期。

问题是他们独立工作。即使 B 已完成,C 也会显示红色。
每个规则突出显示不同的列。

文本完全完成

日期早于=today()

当任务状态设置为完成时,如何使日期格式化程序忽略过去的欠款?

你提到了

exact match for B that sets the color to green and
date before today for C that sets the red color

Custom formula is

下尝试以下公式

=AND(C3<TODAY(),B3<>"Done", C3<>"")

(请根据您的需要调整范围)