Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
条件付き書式の新機能。日付の列 (これらの日付はプロジェクトの終了日) を取得して、それらを今日の日付と比較し、終了日の 60 日前、終了日 (日) の 30 日前、および過去の終了日。
これがまさにあなたが望むものかどうかはわかりませんが (たとえば、フォーマットなし 今日>今日+30、60 日以上)、おそらく 4 つのルール、すべてが範囲 A:A に適用されるとします。ここで、カスタム数式は次 のとおりです。
赤:=A1=today() 濃い赤:=and(A1<today(),A1<>"") オレンジ:=and(A1>today()+30,A1<today()+60) 緑:=A1>today()+30
=A1=today()
=and(A1<today(),A1<>"")
=and(A1>today()+30,A1<today()+60)
=A1>today()+30
順序が異なる場合があることに注意してください。