New! Notion Feature: Weekly Calendar for Task Planning! (Free Template)

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ธ.ค. 2024

ความคิดเห็น •

  • @J_U_L_E_S_246
    @J_U_L_E_S_246 11 หลายเดือนก่อน +18

    If anyone is still having trouble with the formula either by receiving the "checkbox is not defined" or seeing the formula space say anything except "Any Time" try this:
    if(formatDate(prop("Date"), "LT") == "12:00 AM", "Any Time", formatDate(prop("Date"), "h") + "-" + formatDate(dateEnd(prop("Date")), "h:mma")) + if(prop("Completed"), " ✓", "")
    Wherever you see the property "Date" and "Completed" make sure they appear in the grey boxes :)

  • @Birandoo
    @Birandoo ปีที่แล้ว +99

    FOR 24-HOUR CLOCK PEOPLE:
    If you want to use 24 hour time instead of am/pm, just change "hh:mm" to "HH:mm"

    • @timotejtomicek4538
      @timotejtomicek4538 ปีที่แล้ว +2

      You save my life. Thanks Bro ❤

    • @mdshahed6758
      @mdshahed6758 ปีที่แล้ว

      Thank you. I use 24 hour clock.

    • @danielabreu6698
      @danielabreu6698 7 หลายเดือนก่อน +3

      and turn; if (formatDate(prop("Date"), "LT") == "12:00 AM", into -- > if (formatDate(prop("Date"), "LT") == "12:00" deleting AM

    • @user_-qg6yd
      @user_-qg6yd 6 หลายเดือนก่อน

      @@danielabreu6698 Thank you!! Your comment solved my problem, cheers

  • @RedGregory
    @RedGregory  ปีที่แล้ว +51

    Hey guys, in the video, the formula is quite minimal (showing only the hour of the start time) because the calendar view does show the exact start time. I changed it to show the full start time so it can be easier to read in all database view types.
    It's updated in the template, and here it is as well (start time format is changed from "h" to "h:mma"):
    if(formatDate(prop("Date"), "LT") == "12:00 AM", "Any Time", formatDate(prop("Date"), "h:mma") + "-" + formatDate(end(prop("Date")), "h:mma")) + if(prop("Completed"), " ✓", "")
    You can play around with these formats any way you'd like. Here are more examples:
    "LT" for 3:30 PM
    "H:mm" for 15:30
    "h:mma" for 3:30pm
    "h:mmA" for 3:30PM

    • @kriskelvin1814
      @kriskelvin1814 ปีที่แล้ว

      "Your content is amazing Red! I love your videos and I gain so much knowledge from them. Thank you so much for that. I was wondering if you happen to know how to write a Notion formula for calculating the factorial of a given number? I've been struggling with it for a while now without any success."

    • @saschagottlieb9735
      @saschagottlieb9735 ปีที่แล้ว +2

      Hey I have a problem with that formula though. When I have an Action with a Date property that consists just of an start date but has no end date, I get this for example: 15:46 - 15:46.
      I tried working around it but I don't seem to get a solution....

    • @Unknown2634g
      @Unknown2634g ปีที่แล้ว +2

      Hi
      Is there a way to turn them into recurring tasks? I added a small change where in I have start date, end date and start time and end times to my tasks as well. The problem is the formula would populate my calendar only on the day the template was set to instead of the recurring date. How do I make this possible?

    • @ApocalypseBB
      @ApocalypseBB ปีที่แล้ว

      @@saschagottlieb9735 I wanted to have a solution for that issue as well but I can't figure it out yet! I hope someone can find a solution and share it ;_;

    • @RockXann1408
      @RockXann1408 ปีที่แล้ว +2

      @@saschagottlieb9735 Hi ! I just managed to found a way! You have to say something: if the end time is the same as the start time, then only show the star time. Here's the formula I used:
      if(formatDate(prop("Date"), "LT") == "00:00", "Any Time", if(formatDate(end(prop("Date")), "h:mma") == formatDate(prop("Date"), "h:mma"), formatDate(prop("Date"), "h:mma"), formatDate(prop("Date"), "h:mma") + "-" + formatDate(end(prop("Date")), "h:mma"))) + if(prop("Completed"), " ✓", "")

  • @kitchensarehot8769
    @kitchensarehot8769 10 หลายเดือนก่อน +3

    This calendar is insane, genuinely twice as better than most on youtube. Great work

  • @pvanharmelen
    @pvanharmelen ปีที่แล้ว +16

    Bar none, you explain Notion way better than anyone else out there. You have a real gift for this, Sarah. Thank you!

  • @samuelponce2200
    @samuelponce2200 ปีที่แล้ว +98

    this is absolutely amazing, i literally have been waiting for something like this since i started using notion, thanks for all the good content you create and share with all of us!

  • @Savallion
    @Savallion ปีที่แล้ว +4

    I'm so glad you covered the most important feature first: making the weeks start on Monday 😂

  • @ShayaanAzeem
    @ShayaanAzeem ปีที่แล้ว +88

    For everyone having trouble with the given formula here is the fixed version: if(formatDate(prop("Date"), "LT") == "12:00 AM", "Any Time", formatDate(prop("Date"), "h:mma") + "-" + formatDate(dateEnd(prop("Date")), "h:mma")) + if(prop("Checkbox"), " ✓", "")

  • @TheSoapThatCan
    @TheSoapThatCan 7 หลายเดือนก่อน

    Loved that you actually showed the whole thing from start and not just told people to download a template and follow from that point. You got yourself a fan.

  • @ghazalsahebzamani4925
    @ghazalsahebzamani4925 ปีที่แล้ว +1

    You saved my life!! Thank you so much. I got from 0 to 100 in notion just by seeing 2 of your videos; you explain so well!

  • @stefanlaslov1180
    @stefanlaslov1180 ปีที่แล้ว +7

    There was a new update in notion and the formula shown in the video doesn't work anymore, here is the updated one:
    if(
    formatDate(prop("Date"), "LT") == "12:00 AM",
    "Any Time",
    formatDate(prop("Date"), "h:mma") + "-" + formatDate(dateEnd(prop("Date")), "h:mma")
    ) + if(prop("Completed"), " ✓", "")

    • @_sahna_sh_
      @_sahna_sh_ ปีที่แล้ว +1

      It doesn’t work 😢

    • @koeminio
      @koeminio ปีที่แล้ว +1

      it works bro youre top, thanks

  • @deborapassosjt
    @deborapassosjt ปีที่แล้ว

    Omg thank you so much!!!I was searching vídeos like this in portuguese and I didn’t found anyone!Love it ❤ thanks from Brazil 🇧🇷

  • @seventeendegree
    @seventeendegree ปีที่แล้ว +12

    Notion is really powerful. I'm considering it to use at work, for managing the entire production. A custom calender with a database could work really great. Our tasks depend on working days or calendar days, so a database seems necessary. I could link that with a dashboard and would always see directly, which department has which tasks to finish today. This could also be used for personal management or planning the vacations of a team.

  • @theencryptedpartition4633
    @theencryptedpartition4633 ปีที่แล้ว +66

    This is awesome!!! Notion is finally starting to combine the best of others to their platform. If they add the graph view, they’ll kill off Obsidian

    • @edgarmalone7694
      @edgarmalone7694 ปีที่แล้ว +5

      No let both the Notion team and the Obsidian community keep what they are doing. This allow us to have the best of both worlds.

    • @SalimMalibari_Comments
      @SalimMalibari_Comments ปีที่แล้ว +1

      Im waiting for that ...

    • @brendalg4
      @brendalg4 ปีที่แล้ว +2

      They would need more than that to kill Obsidian. Such as local files.

    • @justnaturalcake1
      @justnaturalcake1 ปีที่แล้ว

      I mean there are websites like Notion2charts who already allow for graphs

    • @theencryptedpartition4633
      @theencryptedpartition4633 ปีที่แล้ว

      @@edgarmalone7694 but what if you like both apps and then you have to copy your whole notebook to obsidian. Idk if there was faster way but I spent like 1-2 hours to view my economics notes from Notion in Obsidian graph view

  • @believe701
    @believe701 ปีที่แล้ว +2

    Thank you so much for sharing this!!! THIS is the schdule i´ve been wanting but never found out how to create one, I absolutely love it!!

  • @InTheLifeOfTanmai
    @InTheLifeOfTanmai 10 หลายเดือนก่อน

    I think this is so far the best week planner I ever create, Thank you so much for this

  • @justinemutch8672
    @justinemutch8672 6 หลายเดือนก่อน

    Thank you, you have explained this clearly... and slowly enough for me to understand as I'm new to Notion

  • @antonioccortes
    @antonioccortes ปีที่แล้ว +2

    well finally this day has come, this is great!!! thank you again for all the incredible content, red.

  • @rachelcackleberry
    @rachelcackleberry ปีที่แล้ว

    So happy when I saw this. I have been HANGING OUT for this update!

  • @SalimMalibari_Comments
    @SalimMalibari_Comments ปีที่แล้ว +2

    I would like to recommend adding a templete button that create habits then drag and drop... this will fix all the issues that everyone face from the recurring templete

  • @magilu11
    @magilu11 ปีที่แล้ว

    I love your brain. THANK YOU for giving us so much information, it has made a real difference in my everyday life.

  • @sena7876
    @sena7876 ปีที่แล้ว

    THE BEST NOTION TUTORIAL EVER!!

  • @jamemadison6499
    @jamemadison6499 ปีที่แล้ว

    FINALLY, just used trello for my task management for a brief moment. now kinda wanna go back to notion with this new feature

  • @VioletGreen-v5s
    @VioletGreen-v5s ปีที่แล้ว

    you are a genius and also wonderful teacher!!! I want to make elaborated plant watering schedule and this is very inspiring. I have no idea yet how to make what I have in mind but now I know about formulas!

  • @zoefisk
    @zoefisk ปีที่แล้ว +1

    YES!!!!!! BEEN WAITING FOR THIS!!!

  • @rdp6096
    @rdp6096 ปีที่แล้ว

    THANK YOU!! I just started using Notion but this is exactly what I needed for work. I forget wayyyyy too much lol. Appreciate you!

  • @derechtepotti9783
    @derechtepotti9783 ปีที่แล้ว

    best notion video on yt! Thank you very much! As a beginner it helped me a lot. Keep up the Great work :)

  • @Aendus1
    @Aendus1 8 หลายเดือนก่อน

    super template, i have been searching for such a template for months. great work

  • @consciouschokri
    @consciouschokri ปีที่แล้ว

    Thank you for sharing this template and video. It's an absolute game-changer!

  • @niik99
    @niik99 ปีที่แล้ว +1

    Finally, I'm officially saying goodbye to my database with tags of the week, thanks!

  • @caosespaz
    @caosespaz ปีที่แล้ว

    Thanks! Simple and direct were I looking for.

  • @keylimegween
    @keylimegween ปีที่แล้ว

    Thank you for being so generous with your notion knowledge!

  • @karhadee3660
    @karhadee3660 ปีที่แล้ว +1

    thankyou somuch red for this amazing and helpfull video, it means a lot

  • @jfpdc888
    @jfpdc888 ปีที่แล้ว

    So Good!!! Great overall instruction! Thank you for creating this vid and All The Best To YOU!

  • @devarni
    @devarni ปีที่แล้ว

    Wow, somehow the new calendar view got lost on me. Very good example and also the use of the formula is briliant... many thanks Sarah!

  • @EricVasquezDesign
    @EricVasquezDesign ปีที่แล้ว +2

    Wow! This video did a really great job of explaining the new feature. I have been looking for a way to plan out my week by dedicating certain days to scripting, filming, and editing my videos, and as a visual person this is super helpful. Thank you so much for the walkthrough!

  • @silviamancini91
    @silviamancini91 ปีที่แล้ว +2

    Hi Red very well explained. I can't figure it out the formula...in my case it's not working. maybe something change in the formula expression since last time? thank you

  • @Mark4Jesus
    @Mark4Jesus ปีที่แล้ว

    That calendar looks really sweet!

  • @mikainamahoro2556
    @mikainamahoro2556 ปีที่แล้ว

    Your videos are very very good. Thank you for all the hard work you put in.

  • @Mohamed.wael7
    @Mohamed.wael7 11 หลายเดือนก่อน

    That was the smoothest explanation!

  • @SAKVA
    @SAKVA ปีที่แล้ว

    Thank you so much! Great tamplate!!!

  • @naptitude25
    @naptitude25 ปีที่แล้ว

    Thank you thank you thank you. I've been looking for it for the past two days

  • @monkeydluffy3529
    @monkeydluffy3529 ปีที่แล้ว

    This is so cool. Your explanation is to the point. Thank you 1000 times !!!!!

  • @SelfImprovement560
    @SelfImprovement560 ปีที่แล้ว

    Red Gregogy the best of best!

  • @TulliaDean
    @TulliaDean ปีที่แล้ว

    Thank you so so much for this video! I've been stuck on how to create a combined Daily/Weekly planner for ages and this is exactly what I needed! Really appreciate you sharing this video! :)

  • @paulaarias2229
    @paulaarias2229 ปีที่แล้ว +1

    Thank you so much for this!!! I'm learning how to use notion and this weekly planner is exactly what I was looking for ❤

  • @camo8723
    @camo8723 ปีที่แล้ว

    Amazing tutorial! Notion is sorting my life right now 🙌🏼

  • @malikastar9265
    @malikastar9265 ปีที่แล้ว

    Thank you Red, you have a great way to explain things even for someone who never used notion before, I subscribed just from watching this tutorial !

  • @AislinEvans
    @AislinEvans ปีที่แล้ว

    you have such a knack for teaching from the ground up, pal. appreciate you!!

  • @rjvidalt1
    @rjvidalt1 ปีที่แล้ว

    Excellent video ... as always . Red rocks. Thank you

  • @SunilL-m7q
    @SunilL-m7q ปีที่แล้ว

    Thank you for this informative tutorial ! This is helping me to organize my time better.

  • @softwareengineer8923
    @softwareengineer8923 ปีที่แล้ว +1

    Your video helped me a lot,thanks!

  • @armandogutierrez2880
    @armandogutierrez2880 ปีที่แล้ว

    Very nice and fast ideas for all, thanks for sharing. Your videos are greats and helpful.

  • @adelaidewalker560
    @adelaidewalker560 ปีที่แล้ว +2

    Love this! Thanks so much. I’ve been trying to get into Notion for a while now, but always feel so overwhelmed. As a sole trader, I’m realising more and more how badly I need something for task and project management. Will be using this as part of the “office” I’m trying to build for myself. Now just need to work out if I can code the calendar to have repeating tasks!

    • @TheAccumulation
      @TheAccumulation ปีที่แล้ว

      did you find a way to get repeating tasks?

  • @projetosdabru
    @projetosdabru ปีที่แล้ว +1

    Thanks again, Red!

  • @danielprugger
    @danielprugger ปีที่แล้ว

    Thank you so much Red! You're amazing!! 👍

  • @carolkawasaki-clykstudio873
    @carolkawasaki-clykstudio873 ปีที่แล้ว

    FINALLY! This took ages and was so obviousn

  • @JoyKabeni
    @JoyKabeni ปีที่แล้ว

    I like how you explain your notion task, easy to understand 🎉

  • @angave
    @angave ปีที่แล้ว +1

    your videos always help me get going in Notion! I appreciate all the freebies and content you create 🙏 I’d love to understand formulas more, do you have any tips on how to learn or what language would be good to learn more about?

  • @robertmaxey5406
    @robertmaxey5406 ปีที่แล้ว +2

    This can be quite useful, Red. Notion seems to add new stuff weekly. Just this AM, there was an update. Currently, I do not use Notion because I cannot access it offline. I use Obsidian.
    I still keep up with the Notion community, however. I also test new discoveries as I find them.
    Great job, Red,

  • @ghie5378
    @ghie5378 ปีที่แล้ว

    thank you for this!!! 🤩

  • @mohamedshali394
    @mohamedshali394 ปีที่แล้ว

    thank you so much for the great explanation and given the info in such a wonderfully simple way. Many thanks.

  • @alberto4166
    @alberto4166 ปีที่แล้ว

    UOOOUUU IM SOOO GRATEFUL, YOU HELP A LOT BABY!!! THANKSS!

  • @farouk6437
    @farouk6437 ปีที่แล้ว +1

    I love it, so simple and minimalistic, thank you!

  • @ni7__13
    @ni7__13 ปีที่แล้ว

    hey red thank you so much for this! i was looking for a weekly calendar task planner for such a long time! this was really helpful and informative. really appreciate it :)

  • @RunYourLuck
    @RunYourLuck ปีที่แล้ว +3

    I'd love to see this, but recurring weekly spread. I followed your habits list but my habits change day to day. Like for workouts, household chores, or even a way to add Adhoc tasks.

    • @SalimMalibari_Comments
      @SalimMalibari_Comments ปีที่แล้ว +2

      What im doing right now... i have buttons for habits then schedule them at the begining of the week because my habit changes week by week so chorse sometime become saturday sometime friday... try it you will solve alot of your issues ... you just need a weekly review to recreate them

    • @RunYourLuck
      @RunYourLuck ปีที่แล้ว

      @@SalimMalibari_Comments for the habit, do you have are your properties the days of the week? And then your tasks are just check lists?

  • @d_dharawat
    @d_dharawat ปีที่แล้ว

    Finally
    On the point content :)

  • @kavitatambe2909
    @kavitatambe2909 ปีที่แล้ว

    Thank you so much for this video. I am a beginner youtuber.I am also setting up my notion. This video has been so useful for me. Very well explained. Subscribed!

  • @maximefortinmusic
    @maximefortinmusic ปีที่แล้ว +1

    Thanks Red!

  • @alanwallace3253
    @alanwallace3253 ปีที่แล้ว

    Red, I remember when you didn’t have 5600 subscribers, now you have over that in views in day 1. I’m so stoked for you. I knew from the first video I saw you were going far, congratulations!
    QUESTION: Is there a way or formula to automatically forward tasks NOT COMPLETED ? Sadly it happens , No matter how good my “ intentions “.

  • @Fonsecamvp
    @Fonsecamvp ปีที่แล้ว

    Thank you, practice and usable.

  • @viktrb
    @viktrb ปีที่แล้ว +2

    Thats really helpfull, I like this very much, but have a question. Some of my tasks do not have end time, or I just dont know it. And if I dont set the end time, it appears like "3:00-3:00". But I would like it to be just "3:00". I've been trying to change formula, but it doesnt work well. I don't understand what im doing wrong, PLEASE HELP

    • @viktrb
      @viktrb ปีที่แล้ว +1

      I dont know, i've been trying for 4-5 hours to think up, nothing works, I give up
      If smb can do this let me know🙏

  • @louisyurman
    @louisyurman ปีที่แล้ว

    for her time property if the time is not assigned it would be better to use contains(format(prop("Date"),":") so you don't get confused with assigning something at midnight.

  • @MichaelCardenas-pc2tz
    @MichaelCardenas-pc2tz ปีที่แล้ว

    you are a legend thank you

  • @roshanakgolesorkhi2806
    @roshanakgolesorkhi2806 ปีที่แล้ว

    Amazing 👌 This is what I exactly needed, Thanks!

  • @archive_j
    @archive_j ปีที่แล้ว

    Thanks for this video.

  • @gersonhernandez9107
    @gersonhernandez9107 ปีที่แล้ว

    The video is very comprehensive 👏

  • @tea.garden
    @tea.garden ปีที่แล้ว

    Love you red ❤️

  • @nitishprajapati2991
    @nitishprajapati2991 ปีที่แล้ว

    Thank you from India ❤

  • @cincosolas_
    @cincosolas_ ปีที่แล้ว +1

    Love this weekly planner! Is there anyway to set up a re-occuring task using this method? thank you!

  • @cristianemoraz7438
    @cristianemoraz7438 หลายเดือนก่อน

    I Love your tutorials

  • @saraiitrecruiter7993
    @saraiitrecruiter7993 ปีที่แล้ว +2

    I loved this new view, but I think it needs more improvements before we can use it with the calendar blocking method for example, for me, it's a pain to select a date and a time so manually 😅😅 just imagine how cool it would be to have the option to drag an appointment as you do in GCal and to select a date & time like in Todoist

    • @Alexis-qz1pf
      @Alexis-qz1pf ปีที่แล้ว

      You can bulk-add a random date to all appointments in the table view, by copying/dragging. Then in the calendar view you can drag the appointment to the appropriate date.

  • @oneforallah
    @oneforallah ปีที่แล้ว

    SAME FOR THIS GREG !

  • @josephwilliams8412
    @josephwilliams8412 ปีที่แล้ว

    Great stuff, Red. Thanks.

  • @theebelovedfavorlyn
    @theebelovedfavorlyn ปีที่แล้ว

    You are amazing thank you so much for this amazing video!!!!

  • @riccardoarmellin1625
    @riccardoarmellin1625 ปีที่แล้ว

    Thanks a lot! Keep up the good work!

  • @ya_gema
    @ya_gema ปีที่แล้ว

    It's awesome! Thank you so much!!

  • @Creamy_Bunnylive
    @Creamy_Bunnylive ปีที่แล้ว

    I have a tip to share with you.
    A great thing is to create different task template to each "type of task". For example I have the household tasks with the house icon and the work tasks with the monitor icon. :D

  • @nithinaraveti8571
    @nithinaraveti8571 ปีที่แล้ว

    Really helpful, Thanks for the vid💙

  • @oatlylatte9
    @oatlylatte9 ปีที่แล้ว

    that formula is helpful. thanks mate

  • @isirlasplace91
    @isirlasplace91 ปีที่แล้ว +1

    Thanks so much for sharing this!!!

  • @StaceyJLipowski
    @StaceyJLipowski ปีที่แล้ว

    This is exactly what I needed!! Thank you :)

  • @grantnelson7717
    @grantnelson7717 ปีที่แล้ว

    Love your videos!

  • @anacristinarr2
    @anacristinarr2 ปีที่แล้ว

    Hi!I'm in Brazil!thank Very much!

  • @HitenderThejaswi
    @HitenderThejaswi ปีที่แล้ว

    Thank you so much for this wonderful video tutorial ! :)

  • @vsastock613
    @vsastock613 ปีที่แล้ว

    You guide is very easy to understand, Thanks a lot

  • @PaulinaGallegos412
    @PaulinaGallegos412 ปีที่แล้ว

    This is exactly what I was looking for! Thank you for being so clear, concise and helpful! Great video ☺🤗

  • @rf_trading_
    @rf_trading_ ปีที่แล้ว

    Pretty cool. Thank you!

  • @hannahmiranda9419
    @hannahmiranda9419 ปีที่แล้ว

    This is so useful. Thanks!

  • @praewpraew2863
    @praewpraew2863 ปีที่แล้ว

    i love your channel