How To Build A Simple OKR Goal Tracker In Notion

Поделиться
HTML-код
  • Опубликовано: 27 дек 2024

Комментарии • 17

  • @deekshak-dk
    @deekshak-dk 10 дней назад +1

    EXACTLY what i needed!!!! Thanks a lot brother!

  • @riccardomoscovici
    @riccardomoscovici Месяц назад +1

    so grateful that i casually stumbled upon this video. so useful, thank you man

  • @IslanderJena
    @IslanderJena 6 месяцев назад +6

    If I can give this a ten thumbs up 👍🏻, I would. Super clear and easy-to-follow tutorial, a big thank you!

    • @chrisnotion
      @chrisnotion  6 месяцев назад +1

      Haha I appreciate it :)

  • @gresianagede1143
    @gresianagede1143 21 день назад +1

    Hello Chris, currently I’m on progress watching the 7hour video, still in third hour 🥹, and I already click the notion wizard community.
    Really looking forward to joining the community, bcause recently I found out that I’m ADHD (diagnosed professionally), and your videos helped me so much to learn notion for creating tracks and todolist about my messy life..
    Thankyou!! And still waiting to be approved to join the notion wizard community ✨🥳

  • @BlaisZeroni
    @BlaisZeroni 8 месяцев назад +3

    Thanks!
    Ps. You can use map() in your formula to skip the rollup entirely. that way you don't need 2 of that progress bar anymore

    • @LeasArtStudio
      @LeasArtStudio 7 месяцев назад

      Can you please explain how to do this? I'm building a variation of this template right now.

  • @sonu-442
    @sonu-442 9 месяцев назад +1

    How do you create a custom cover image using Canva and How do you place these Notion icons in Canva

  • @odenkallerdahl6985
    @odenkallerdahl6985 9 месяцев назад

    ok dropped at a good time im just making this now i can copy instead :)

  • @solilos
    @solilos 9 месяцев назад +4

    Just curious, where are you from? The accent?

  • @ЕвгенийЗеленов-р9и
    @ЕвгенийЗеленов-р9и 7 месяцев назад

    Really helpful, thank you

  • @almtaani888
    @almtaani888 7 месяцев назад

    Bro
    Can you teach us how to use Notion with shortcut?

  • @pixellmedia9953
    @pixellmedia9953 9 месяцев назад +1

    Is this from new appartman.

    • @chrisnotion
      @chrisnotion  9 месяцев назад +3

      Haha no it's my parents house, have moved out of my old apartment so just dumping all my shit here then I'm going to Thailand this weekend :)

  • @birkls
    @birkls Месяц назад

    The formula didn't work for me, so had chatgpt revise it. I really appreciate this video tho! Here's the formul i ended up with:
    if(formatDate(prop("Deadline"), "MMMM D, Y") == formatDate(now(), "MMMM D, Y"),
    "Deadline is today 🔵",
    if(dateBetween(prop("Deadline"), now(), "days") == 0,
    "Deadline is tomorrow ‼",
    if(dateBetween(prop("Deadline"), now(), "days") > 0,
    format(dateBetween(prop("Deadline"), now(), "days")) + " Days til deadline 🟢",
    if(dateBetween(prop("Deadline"), now(), "days") < 0,
    format(abs(dateBetween(prop("Deadline"), now(), "days"))) + " Days past deadline 🚨",
    ""
    )
    )
    )
    )