LoginSignup
0
1

More than 3 years have passed since last update.

Notionでタスクの状態を絵文字で可視化する

Last updated at Posted at 2020-12-19

アルプ株式会社でエンジニアをしています、集約のエンティティ@pictinyです。
これはNotion Advent Calendar 2020 18日目のエントリです。
17日目はNotionで締切までの日数をカウントするでした。

日付の計算

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

絵文字による可視化

締切が過ぎていないタスクは 😊 、締切が過ぎたタスクは 😵 を表示してみます。

image.png

計算式は以下のようになります。

if(prop("締切までの残り日数") > 0, "😊", "😵")

まとめ

Formulaの式には絵文字を使うことができます。

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

0
1
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
0
1