LoginSignup
6
3

More than 3 years have passed since last update.

Notionで締切までの日数をカウントする

Last updated at Posted at 2020-12-18

アルプ株式会社でエンジニアをしています、集約のエンティティ@pictinyです。
これはNotion Advent Calendar 2020 17日目のエントリです。
16日目はNotionで2つの日付から期間を取得してスプリントを計算するでした。

日付の計算

プロパティの値を使って何か計算をする場合、 Formula というプロパティタイプを使います。
Formula を使うと、日付の計算を行うことができます。

特定の日付までの日数をカウントする

タスクに締切を設定することがよくあるかと思います。
現在の時刻から締切まで期間を求めることで、締切までの日数を求めることができます。

image.png

締切までの残り日数を求める計算式は以下のようになります。

dateBetween(prop("締切日"), now(), "days")

まとめ

Formulaを使って締切までの残り日数を求めることができました。

公式ドキュメントはFormulasにありますので、そちらもご覧ください。

6
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
3