The Ultimate Habit Tracker in Notion

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

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

  • @ruru2653
    @ruru2653 Год назад +41

    it's really appreciating that you show us from scratch how to build this thing thanks for you your beautiful work

  • @katymick
    @katymick Год назад +300

    If anyone looking for the Formula of updated version- round((toNumber(Meditate)+toNumber(Exercise)+toNumber(Journal))/3*1000)/1000

  • @Monakate2
    @Monakate2 Год назад +119

    Notion made recent changes in the formula and I think the correct formula now is something like this:
    round((toNumber(prop("Exercise") == true)+toNumber(prop("Journal")== true)+toNumber(prop("Meditate")== true))/3*1000)/1000

    • @trevorflobinus4real
      @trevorflobinus4real Год назад +2

      thank you mate

    • @johanna_wk
      @johanna_wk Год назад

      oh bro, I did this (my notion just delete the prop idk why, is that the mistake?) but now I have 14,3, 14,4; 14,5; 14,6 ... help hahah

    • @Sims3627
      @Sims3627 Год назад

      thanks a lot m8

    • @delphinedefer1360
      @delphinedefer1360 Год назад

      thank you !!

    • @vivalavida9980
      @vivalavida9980 11 месяцев назад +9

      @@bhaveshprajapat8524 I just typed the formula in Word then pasted it, it automatically removed prop. I removed round to make it work. In the end it looks like this (toNumber(A)+ toNumber(B)+ toNumber(C)) /3*1000/1000

  • @Butterflei
    @Butterflei Год назад +14

    OMG THANK YOU SOO SOO MUCH!! this habit tracker is a lifesaver. The way you've made it free and easily accessible to everyone is commendable!! Recommending it to all my notion friends!!

  • @orodrigodt
    @orodrigodt Год назад +21

    For those seeking for a habit tracker that analyzes different habits on different days and can't find videos about it (because they don't exist), the trick is to use the formula. Basically, you just need to change it to identify the current day of the week by adding a new property: the Creation Time (Notion does this by giving each day a number - like Monday is 1, for example), then edit it to get the necessary date formatting and apply the logic. So: if your habits are Exercise (Mon, Wed, Fri) and Reading (Every day), then you need to create a rule (some IFs) for days 1, 3 and 5 (Mon, Wed and Fri) that 100% is the sum of the "toNumber()" of the 2 habits divided by 2 (as shown in the video), and on the other days it will only be the Reading habit. It may seem a little confusing because it requires a considerable amount of programming knowledge.

    • @paolahernandez3355
      @paolahernandez3355 Год назад

      tutorial plz

    • @liveluckyking4788
      @liveluckyking4788 11 месяцев назад +1

      Tutorial ? Or the code?

    • @pranavborse91
      @pranavborse91 11 месяцев назад

      @@liveluckyking4788 The formula if you want to track habits that don't need to be repeated every day goes something like this.
      Say you only want to go gym on Monday, Wednesday, and Friday. So Notion automatically assigns each day of the week as a number, with Mon = 1, Tue = 2 ... Sun = 7. To use this we are going to utilise 'day(Date)'. (day(Date) looks at the current date/day of the week and returns a number, so if today is a monday it would return 1, if today is a tuesday it would return 2, etc.)
      So all you have to do is create an if statement which in notion has 3 parts (condition, what to do if condition is true, what to do if conditon is false):
      'if({condition}, {ifTrue}, {ifFalse})', if the condition is true the first value (ifTrue) is returned, if the condition is false, the second value (ifFalse) is returned.
      Since we are only going gym mon, wed, and fri. The numbers of the week would be 1, 3, 5 respectively. Therefore our condition would be 'if(day(prop("Date")) == 1 || day(prop("Date")) == 3 || day(prop("Date")) == 5, ...' (note: || simply means 'or').
      Now we have our condition, we need to figure out what to do with the 'ifTrue' and 'ifFalse' bit. The thing I wrote is a bit clunky but it works. So say we have 3 other habits and the condition is true (so we are going gym), then for 'ifTrue' we would write:
      round((
      toNumber(prop("Wake up at 5am"))
      + toNumber(prop("Read/Write for 30min"))
      + toNumber(prop("Study for 3-4 hrs"))
      + toNumber(prop("Go to the Gym"))
      )/4*1000)/1000
      Now say the condition is false (so its a day we aren't going gym), for 'ifFalse' we would write:
      round((
      toNumber(prop("Wake up at 5am"))
      + toNumber(prop("Read/Write for 30min"))
      + toNumber(prop("Study for 3-4 hrs"))
      )/3*1000)/1000
      All we did is removed the 'going to the gym' habit and change the rounding number to 3 (because we had 3 habits).
      *So all in all the code would look something like this:
      if(day(prop("Date")) == 1 || day(prop("Date")) == 3 || day(prop("Date")) == 5,
      round((
      toNumber(prop("Wake up at 5am"))
      + toNumber(prop("Read/Write for 30min"))
      + toNumber(prop("Study for 3-4 hrs"))
      + toNumber(prop("Go to the Gym"))
      )/4*1000)/1000,
      round((
      toNumber(prop("Wake up at 5am"))
      + toNumber(prop("Read/Write for 30min"))
      + toNumber(prop("Study for 3-4 hrs"))
      )/3*1000)/1000)*

    • @qweraws6829
      @qweraws6829 11 месяцев назад +1

      is there like a code or smth 😭

  • @algizin
    @algizin 11 месяцев назад +13

    That's works: round((toNumber(prop("Exercise"))+toNumber(prop("Exercise"))+toNumber(prop("Exercise"))+toNumber(prop("Exercise"))+toNumber(prop("Exercise"))+toNumber(prop("Exercise"))+toNumber(prop("Exercise")))/7*1000)/1000

    • @user_-qg6yd
      @user_-qg6yd 11 месяцев назад +2

      Thank you!! Your comment saved me. For anyone else needing some help: you have to manually change the "Exercise" to the names of the habits you have, or else the formula will only consider one habit (here above it would be exercise)

    • @RahulYadav-yg6zh
      @RahulYadav-yg6zh 11 месяцев назад

      bro my chart isn't working. Would appreciate if you could help

    • @nicole_work
      @nicole_work 3 месяца назад +1

      thank u!

  • @212aeh
    @212aeh Год назад +119

    There's one thing that i pretty much don't find in any Notion habit trackers, and that is tracking habits that don't need to be repeated every day
    For example, if I only have working out 3 times a week as an objective, and I achieve it, it will show me 43%, when it actually is 100% of my goal
    It would be cool to integrate something like that
    Thank you!

    • @mothtotheflame13
      @mothtotheflame13 Год назад +18

      What I have found has worked for me is just making multiple templates. So, if you work out Mon, Wed, Fri, then make 2 templates. One for workout days and one for the rest (or more of you have other habits like that). It might be a bit harder to figure out the % and charts however. but if you only want a % for each day it should work fine!

    • @mp0wa
      @mp0wa Год назад +3

      @@mothtotheflame13 That's exactly what I'm doing right now. Figuring out how to chart this would be challenging though.

    • @mothtotheflame13
      @mothtotheflame13 Год назад

      @@mp0wa for sure. hope you figure it out!!

    • @LordBamba
      @LordBamba Год назад

      are there some news?

    • @deanheartsnikon
      @deanheartsnikon Год назад +7

      @@LordBamba I've never used this app - but here are my thoughts. I'm thinking you could create a new database column called "days" where workout days == 1 and rest days == 0. Then a weekly progress bar formula totals the checkbox values if database rows contain 1 within "days" column. Then your line graph x axis could be assigned weeks instead of days. Could be wrong. Open to criticism. Or just set y axis to progress bar values of rows == workout days. Idk

  • @SanderJanssenBSc
    @SanderJanssenBSc Год назад +24

    Common problems and their fixes (ran into these myself):
    Problem: The bar chart shows 400% unlike the empty graph Easlo gets in the video
    Fix: The fix is actually simple. Remove all the data-points he set up in the march sections and the y-axis will adjust and the graph will fix it self once you enter new data on today and upcoming days after you hit refresh!
    Second problem: You added habits like I did (for example 7) now the graph shows all 7 but it says you're at 700% or 6 and shows 600%.
    Fix: Got to the view and edit the default template like he shows at 1:32. Make sure to add that portion into the downloaded template as it's not there. Make sure to use the right amount of habits (change 3 to 7 in my case)
    Hope this helped :)

    • @hieveryone6074
      @hieveryone6074 Год назад +1

      you're a lifesaver THANK YOUU😭😭🙏🏻

    • @SanderJanssenBSc
      @SanderJanssenBSc Год назад

      @@hieveryone6074 gotcha

    • @ninasozialemedien1794
      @ninasozialemedien1794 Год назад +1

      it says 1300% when i check one box off (i have 13 habits), the code is the exact same like he did (except the 13 ofc)

    • @johanna_wk
      @johanna_wk Год назад +2

      I did this:
      round((toNumber(prop("Journaling") == true)+toNumber(prop("Lichttherapie")== true)+toNumber(prop("Subliminals")== true)) + toNumber(prop("Vagusnerv Stimulator")== true) + toNumber(prop("Vagusnerv Übung") == true) + toNumber(prop("Frische Luft") == true) + toNumber(prop("mind. 1l Wasser") == true)) /7 * 100 / 100
      but he's not rounding and I have numbers like 14,28715237%.. HELP

    • @jincuriki2539
      @jincuriki2539 Год назад

      ​@@johanna_wku need to use 7*1000/1000

  • @david_bandera
    @david_bandera 4 месяца назад

    Seriously the best Notion tutorial I've encountered so far, thanks man!

  • @Navarro-Finca
    @Navarro-Finca Год назад +14

    Awesome video, I don't have much money and thanks to you I am organizing my life much better. We need to see how you do the weekly review of your second brain. Your systems are extremely useful! I appreciate your educational work, thank you very much.

  • @Dannithetechie
    @Dannithetechie Год назад +18

    Do you think that you can make a calendar planner template that can be integrated with Google chrome

  • @mp0wa
    @mp0wa Год назад +5

    @Easlo once we get a habit down after say 60-90 days of consistency and we no longer need to track it cause it's part of our daily routine, how do we store or archive that data while creating new habits? Cause once we delete or update that property field that will throw off our formula and historical data for the last few months. Wonder if anyone else has a solution for this.
    Thank you for sharing this updated version of your Habit Tracker and Notion2Charts! You really have an eye for clean aesthetics and layout design.

  • @Reznov0ps143
    @Reznov0ps143 Год назад +1

    I LOVE THIS TEMPLATE! NOTION WHERE HAVE YOU BEEN ALL MY LIFE!

  • @appellare2786
    @appellare2786 Год назад +1

    You really nice man, thank you for your help ! Your videos have inspired me to take notes, learning English and get rid of drug addiction and smoking addiction.
    In the future, when I get my affairs in order, I'll be sure to send you a donation. For now, just thank you.

    • @polarraising
      @polarraising Год назад

      Thats so nice keep pushing man I know its hard

  • @AmiyaSparks-k7l
    @AmiyaSparks-k7l 11 месяцев назад +2

    THANK YOU SO MUCH! I was just missing this and you explained it so straightforwardly!

    • @FurtherFlying
      @FurtherFlying 11 месяцев назад

      Could you help me with the formula

    • @burugyri
      @burugyri 11 месяцев назад +1

      @@FurtherFlying try this one:
      round((toNumber(Meditate)+toNumber(Exercise)+toNumber(Journal))/3*1000)/1000

    • @trexhs
      @trexhs 11 месяцев назад

      @@burugyri Thank you!!

  • @gregorybakker
    @gregorybakker Год назад +3

    The notion wisdom feels good.

  • @user-blank-h6q
    @user-blank-h6q 10 месяцев назад +1

    Best Habit tracker video out there!

    • @easlo
      @easlo  10 месяцев назад

      Thank you, so glad to hear that! Let me know if there’s any feedbacks always!

  • @devi_vivi15
    @devi_vivi15 Год назад +1

    This was really helpful! Cut down the time I would have taken to set up Notion's Habit Tracker template by A LOT!! Thank you! 💗

  • @philosophe2517
    @philosophe2517 Год назад

    It's the first time I do this, thanks a lot !!

  • @suhailashraf704
    @suhailashraf704 8 месяцев назад

    Best tutorial out there
    highly recommended for beginners

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

      What formula did you use to do the progress mine is not working can you pls help??

  • @whiteclaww4423
    @whiteclaww4423 11 месяцев назад +1

    at 2:49 how can i make both buttons appear on the same line? personally when i duplicate it just goes to the next line (sorry typo)

  • @huynhthaihoang1621
    @huynhthaihoang1621 11 месяцев назад

    This is absolutely helpful for me, Thanks!

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

    Thank you so much! This is exactly what I was looking for!

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

      I’m really glad to hear! Thank you for watching!

  • @magnusrasmussen6107
    @magnusrasmussen6107 Год назад +1

    Awesome video Easlo.
    Learned a lot of new things from this.

    • @easlo
      @easlo  Год назад

      Thank you Magnus, I'm glad to hear!

  • @ecojumeau
    @ecojumeau Год назад

    Hey, bro. Thank you so much for sharing! 🔥 I was looking for this since a long ago.

  • @Guilherme.Melo01
    @Guilherme.Melo01 Год назад +1

    Thanks bro! this video is great and helps me a lot!

    • @easlo
      @easlo  Год назад +1

      Thank you too for watching! I’m glad to hear it!

  • @EduardoPerez-uf9nq
    @EduardoPerez-uf9nq 11 месяцев назад

    Amazing video 🚀 it's really helpful, concise and avoid you to buy expensive templates.

  • @dSRTRRTRRR
    @dSRTRRTRRR Год назад +2

    just came across this videa and it was soo helpful ! However I keep having problems with the buttons not working. Can someone help ?

  • @AyBeX-hj7gr
    @AyBeX-hj7gr 11 месяцев назад

    thank you for your simplicity💌

  • @iceicebabyy
    @iceicebabyy 11 месяцев назад

    This is really helpful and my life saver. Thank you sooo much!

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

    you saved me, thankyou so much!!

  • @zulamin5186
    @zulamin5186 5 месяцев назад

    Woa, you are simply the greatest!

  • @calvinperez5370
    @calvinperez5370 10 месяцев назад

    This is the best habbit tracker in notion

    • @antonjohansson9967
      @antonjohansson9967 10 месяцев назад

      Yo bro, could you help me get going with notion. Dont understand much since mine is in a different language..could I dm you on instagram or sum?

  • @halimahcahyaningfajri3233
    @halimahcahyaningfajri3233 11 месяцев назад

    Soo much helpful! I loove this template😍

    • @easlo
      @easlo  11 месяцев назад

      Glad it was helpful!

    • @myl_3229
      @myl_3229 11 месяцев назад

      ​@@easlohi! this has been a really helpful tutorial. i was wondering if you’d be able to help me? every time i tick my habit as complete, the percentage bar goes up by 100% - since i have 15 habits, it currently adds up to 2066.66666667 (even though it shouldn’t be adding to that even if i was trying to go by the 100%s)

  • @katerina6259
    @katerina6259 Год назад

    Thank you for the video, I set up my habit tracker!🤗

  • @Rezzahs
    @Rezzahs 11 месяцев назад

    very Useful Videooo and tutorial very clear..thxxx

  • @aibscissa
    @aibscissa 9 месяцев назад +2

    I put 17 daily habits and followed your formula, but it's showing a lot of decimal places. Is there a workaround for this to reduce it to 1-2 decimal places like yours?

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

      a previous comment fixed this issue for me, here is the formula:
      round(((toNumber(A) + toNumber(B) + toNumber(C) + toNumber(D) + toNumber(E) + toNumber(F)) / 6) * 100) / 100
      just change the letters to what your properties are and the number 6 if you have more or less

  • @Michael-cs2gd
    @Michael-cs2gd Год назад

    fantastic video! Thank you!

  • @maiacaycedo3377
    @maiacaycedo3377 7 месяцев назад +1

    Does anyone know the updated version of the formula???

    • @maiacaycedo3377
      @maiacaycedo3377 7 месяцев назад +2

      This code worked for some reason... ((toNumber(prop("Name")) + toNumber(prop("Name"))) +toNumber(prop("Name"))) + toNumber(prop("Name"))
      I hope this helps

  • @CellesNunes
    @CellesNunes Год назад +2

    One question.. Can I make the graph cumulative? Some context: I need to create a chart which shows completion of tasks, and the tasks must be cumulative. Let me give an example: I have 100 items to sell, and every day I sell around 5. So in day 1 the graph goes to 5, the next day, the graph goes to 10, and so on. How do I do that?

  • @anne5946
    @anne5946 Год назад

    I'm having a slight trouble with the buttons.. I followed the video step by step until I ran into a slight problem by 2:39. Changed the "is relative to" to "is" as said in the video but on my end the "end date"/"start date" didn't disappear.. So whenever I click on the buttons, they never work.. Is there a way for me to fix this?

  • @MLDmedia-hf5ik
    @MLDmedia-hf5ik 7 месяцев назад

    How can i place a Button at 2:25

  • @Lupelifts-lm2zn
    @Lupelifts-lm2zn Год назад

    Wow many blessings to you. Wonderful tutorial!!! So you know how we can add graphics to templates so they are not just white?

  • @8Brazo8
    @8Brazo8 4 месяца назад

    Do we always have to ''add an item'' on the calendar? Is there an option to do have to open that checkbox space daily? Thx

  • @Darkborn781
    @Darkborn781 Год назад +1

    thanks a lot for the tips, however do you mind sharing the latest coding since they've updated their formula language?

  • @ThePfil
    @ThePfil 10 месяцев назад

    Cool, thanks! The music at the end jumps out very loud and disturbing tho

  • @heywayden
    @heywayden 4 дня назад

    very easy to follow and highly intuitive habit tracker. Now all that's left is to actually build the habits, haha.😂

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

    You are amazing!!

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

      Thanks for checking out my video, I appreciate it!

  • @NaArias-o7t
    @NaArias-o7t Год назад +1

    help!! i dont know why my chart on the formula says " ) expected (char 156)" im getting crazy. thanks !!
    and its not allowing me to hit the DONE button

    • @sraun9nrlund264
      @sraun9nrlund264 Год назад

      try this: round((toNumber(prop("your habit")) + toNumber(prop("your habit")) + toNumber(prop("your habit")) + toNumber(prop("your habit"))) / 4 * 1000) / 1000

  • @BlackMambaKB8-24
    @BlackMambaKB8-24 Год назад

    Great Video, Thanks.

  • @chinmayjoshi977
    @chinmayjoshi977 2 месяца назад

    thanks a million!

  • @hedonist5600
    @hedonist5600 Год назад

    Thanks a million!

  • @artemnovikov7611
    @artemnovikov7611 Год назад

    Thanks, bro. I`m so happy)

  • @tajburrow25
    @tajburrow25 11 месяцев назад +4

    Can you please go a little faster next time? I’d prefer to pause and rewind 47 times instead of the normal 35.

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

    What to do when i want to embed my link of the chart but my only options are mention block, dismiss, and paste and sync?? Thank you!

  • @ArTheUnknown
    @ArTheUnknown 11 месяцев назад

    do i need to add every day this to myself or will it add automatic ?

    • @easlo
      @easlo  11 месяцев назад

      You will find this portion of the updated video helpful, which shows you how to add a repeating template so you don't have to add a new page every day. ruclips.net/video/8VekNg_vjUw/видео.htmlsi=WL-ONsAQcb_yQ54E&t=237

  • @anhtranfnb6208
    @anhtranfnb6208 Год назад

    Thank you so much for the very helpful video. I have a question I want to ask for your help. I would like to create weekly and monthly progress bar based on the daily progress bar that we already have to help me visually my performance. I have struggled couples days finding ways to do that. Do you have any suggestion on doing it? Thank you in advance!!!

  • @merveguldincer8767
    @merveguldincer8767 11 месяцев назад

    Hi there, I took a habit tracking template and added it to my own notion, but I cannot add new habits different from the habits in the template I took. The properties I added do not appear in the list below. I add it as a checkbox but it is still not in the days section below. How should I add them?

    • @magdaengblom9737
      @magdaengblom9737 10 месяцев назад

      If you click on Properties, are the ones you added hidden? In that case click the eye symbol to show them

  • @proteinshakes924
    @proteinshakes924 Год назад

    Great video!

  • @abdulbasir8740
    @abdulbasir8740 Год назад

    This is amazing

  • @xxdaniel_harrisxx
    @xxdaniel_harrisxx 4 месяца назад

    Did you hear about notion's update with charts?

    • @easlo
      @easlo  4 месяца назад +1

      Yes I'm going to be updating my templates and make new videos soon!

  • @mariawalkiewicz9407
    @mariawalkiewicz9407 Год назад

    this video is awesome but I have one question how to move the buttons so that they are horizontal ?

    • @tharsikanmaheswaran2996
      @tharsikanmaheswaran2996 Год назад

      Click the three dots next to a button and drag it alllllll the way to the right edge

  • @samlinus836
    @samlinus836 5 месяцев назад

    Thanks man

  • @SORIYEN_SL
    @SORIYEN_SL 4 месяца назад

    is it possible to build a habit tracker that only tracks habits some days out of the week, and not everyday? For example if I go to the gym 4 times a week, then going to the gym is not a daily habit, but I don't want only check 4 out of 7 boxes for the week because then it won't show up as 100% complete.

    • @BennyBuildsIt
      @BennyBuildsIt 22 дня назад

      I just published a tutorial video & free template for a flexible habit tracker that makes it possible to set up daily & non-daily habits. You can choose specific weekdays, change it whenever needed, and even pause a habit without it breaking anything. Feel free to check it out! 😊👍

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

    is there anyway to track by Habit, eg i want to see the percentage of time I exercise that month/week

  • @haifoon1
    @haifoon1 5 месяцев назад

    Can I use different databases for different habits? And how?

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

    Thank you very much

  • @Hi_Rachie
    @Hi_Rachie 11 месяцев назад

    Can you please show me how to build a language study plan on notion?

  • @Matias-Varas
    @Matias-Varas 8 месяцев назад

    Thanks brou!!

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

    how to choose Ascending or Descending in checkbox ???

  • @pranavborse91
    @pranavborse91 11 месяцев назад +1

    The formula if you want to track habits that don't need to be repeated every day goes something like this.
    Say you only want to go gym on Monday, Wednesday, and Friday. So Notion automatically assigns each day of the week as a number, with Mon = 1, Tue = 2 ... Sun = 7. To use this we are going to utilise 'day(Date)'. (day(Date) looks at the current date/day of the week and returns a number, so if today is a monday it would return 1, if today is a tuesday it would return 2, etc.)
    So all you have to do is create an if statement which in notion has 3 parts (condition, what to do if condition is true, what to do if conditon is false):
    'if({condition}, {ifTrue}, {ifFalse})', if the condition is true the first value (ifTrue) is returned, if the condition is false, the second value (ifFalse) is returned.
    Since we are only going gym mon, wed, and fri. The numbers of the week would be 1, 3, 5 respectively. Therefore our condition would be 'if(day(prop("Date")) == 1 || day(prop("Date")) == 3 || day(prop("Date")) == 5, ...' (note: || simply means 'or').
    Now we have our condition, we need to figure out what to do with the 'ifTrue' and 'ifFalse' bit. The thing I wrote is a bit clunky but it works. So say we have 3 other habits and the condition is true (so we are going gym), then for 'ifTrue' we would write:
    round((
    toNumber(prop("Wake up at 5am"))
    + toNumber(prop("Read/Write for 30min"))
    + toNumber(prop("Study for 3-4 hrs"))
    + toNumber(prop("Go to the Gym"))
    )/4*1000)/1000
    Now say the condition is false (so its a day we aren't going gym), for 'ifFalse' we would write:
    round((
    toNumber(prop("Wake up at 5am"))
    + toNumber(prop("Read/Write for 30min"))
    + toNumber(prop("Study for 3-4 hrs"))
    )/3*1000)/1000
    All we did is removed the 'going to the gym' habit and change the rounding number to 3 (because we had 3 habits).
    So all in all the code would look something like this:
    if(day(prop("Date")) == 1 || day(prop("Date")) == 3 || day(prop("Date")) == 5,
    round((
    toNumber(prop("Wake up at 5am"))
    + toNumber(prop("Read/Write for 30min"))
    + toNumber(prop("Study for 3-4 hrs"))
    + toNumber(prop("Go to the Gym"))
    )/4*1000)/1000,
    round((
    toNumber(prop("Wake up at 5am"))
    + toNumber(prop("Read/Write for 30min"))
    + toNumber(prop("Study for 3-4 hrs"))
    )/3*1000)/1000)

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

    It’s showing error to make the chart so I’m unable to create the graph, help me out

  • @luigicecere9772
    @luigicecere9772 Год назад

    ok everything works, the only doubt is if it will work forever or will I have to do it for every month of the year?

  • @Pandodora
    @Pandodora Год назад

    few questions i have:
    1. Is that possible to show only certain date on the calendar such as i only want to see Oct only? (I added a filter under the calendar but it is still the same)
    2. I want to leave every Saturday blank, is there a way to do so?
    3. Not all of my habits are in checkbox format, some are in text and number format and it is not showing on the calendar. How to show these non check box habits on the calendar instead of clicking into it?

  • @Niekchentest
    @Niekchentest 11 месяцев назад

    really awesome! this helped me a lot :)
    i have a litte question - is it possible to add a second template and use it with different habits ? i mean - yeah it is possible and i can create a second list and stuff, but it automatically has the habits from the first one and when i edit something in the new template - the edits are also in the first one :/

    • @myl_3229
      @myl_3229 11 месяцев назад

      ive been looking for an answer to that too and the answer is no, i don't think so. please let me know i fyou find one though !

    • @magdaengblom9737
      @magdaengblom9737 10 месяцев назад

      Unfortunately I don’t think that works and it bothers me. But what I’ve done is that I’ve created different views and then you can choose which properties you want hidden or shown in every view. So I have one for daily habits, one for weekly and one for monthly

  • @Abdulla-ex5sv
    @Abdulla-ex5sv 10 месяцев назад

    How do we make this appear every day on the calendar?

  • @thegaavr
    @thegaavr 11 месяцев назад

    Can I add list of checkboxes automatically when I press any button with habit, without 'plus' button every day in calendar? ps thx for video

    • @myl_3229
      @myl_3229 11 месяцев назад

      yeah so in the calendar just go into template, add the checkboxes there, and then set it for daily recurring. i think so at least idk

  • @ClavisTrading
    @ClavisTrading Год назад

    I'm getting stuck with my date in notion2charts. I can get everything to display untill I load my date property. Then my lines disappear. How can.this be?

  • @syliane7269
    @syliane7269 8 месяцев назад

    I have a problem with the button It checks everything not only the action of today but also of yesterday and the days before and tomorrow and the days after I want it to check today only how can I do that ?

  • @residentialstudio1897
    @residentialstudio1897 Год назад

    Amazing !

  • @MohitSingh-yb8on
    @MohitSingh-yb8on 7 месяцев назад

    I have windows laptop so i need a 6 habit formula.pls share me

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

    How to add Page inside checkbox in daily habit page

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

    thank you!!!!

  • @clemens1993
    @clemens1993 Год назад +1

    When I embed the Chart it gives me an error every single time. :(

  • @TheUmayyad-1
    @TheUmayyad-1 17 дней назад

    Why can't there be a more dynamic formula which checks for the number of properties in a property section without having to hardcode them into the formula.

  • @warrior2167
    @warrior2167 Год назад

    thankss😁

  • @DurvaGawade.
    @DurvaGawade. 5 месяцев назад

    Just saw your reel on insta where u told to comment for link !!But didn't recieve any positive response so went on youtube and look gotchu

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

    I can't organize my buttons horizontally, how can I do it? Notion only allowed me to move my buttons in a vertical way.

    • @ramenferrana5147
      @ramenferrana5147 2 месяца назад

      You can put "columns" to do it how he shows it

    • @czar16-kk6fr
      @czar16-kk6fr Месяц назад

      @@ramenferrana5147 can you please tell me how to do it my buttons are only moving vertically and not horizontally?

  • @minhchau29v1
    @minhchau29v1 Год назад

    i get error when create embed: Application error: client side exception has occurred (see browser console for more info).
    Please guide me to fix it

  • @guilhermesilvapedro1691
    @guilhermesilvapedro1691 10 месяцев назад

    f I create a chart in chartbase and I share the template, the chart still update with the person statistics?

  • @soso_daydays
    @soso_daydays Год назад

    I'm feeling so stupid, you explained so well and even with the template I'm not getting it... mine when I go to create a new day deletes itself when I change the date :(

    • @isabelladeng7634
      @isabelladeng7634 Год назад

      Try doing it again! I think you may have done something wrong with the buttons

  • @selflove-jl7qk
    @selflove-jl7qk Год назад +1

    i really dont know but done button refused to work

  • @chinsetgelnyamjav4180
    @chinsetgelnyamjav4180 11 месяцев назад

    Nice, useful

  • @Jon.Pedersen
    @Jon.Pedersen Год назад +1

    Any way it can create a page if you don't already have one in the database for the respective "Today" date? That would help remove an unnecessary step.

    • @polarraising
      @polarraising Год назад +1

      You can create a button for that. I saw that problem too. Would be cool if it vloud be automated

    • @Jon.Pedersen
      @Jon.Pedersen Год назад

      @@polarraising aye!

  • @RahulYadav-yg6zh
    @RahulYadav-yg6zh 11 месяцев назад

    Can anyone please help because the chart is not working for me?

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

    masterpiece

  • @lgustavoprod
    @lgustavoprod Год назад

    Hello! Liked the video! Just got lost at the formula part as I'm not so familiar with this at Notion yet. Mine keep giving me this error: " ) expected (char 96) "
    Also would love your voice to be a little bit higher than the music! Would aprecciate that!
    Love your videos! Thanks man!

    • @theaccountantguy
      @theaccountantguy Год назад +1

      Hi there, you need to place a ")" to close the formula similar to what we do while using the if condition in excel. That needs to be placed at "character 96" if you count from the left side of the formula. Hope this helps! Let me know if you have any questions. Thanks.

    • @lgustavoprod
      @lgustavoprod Год назад

      @@theaccountantguy It worked! But I'm still with a problem: When clicking the button nothing happens. It only checkmark my habits if I manually click on " + " to add the template page each day, than it works. If i click on "Exercise" for example it is not creating the "template" and then checking complete. Any way to change this or may be a bug?

  • @Eddie.Moore2.0
    @Eddie.Moore2.0 Год назад

    for anyone else is the formula not working in oct 26 2023? or is that just me. i tried copying it word for word but it says prop is not defined idk what to do....

  • @r0cketRacoon
    @r0cketRacoon Год назад

    the button is only designed for checked, i wanna click 2 times then it will return unchecked, could anyone help me with that ?

    • @luigicecere9772
      @luigicecere9772 Год назад

      I created another button to deselect

    • @r0cketRacoon
      @r0cketRacoon Год назад

      @@luigicecere9772 that's not neat, so I dont't need button anymore

  • @HiteshWrites
    @HiteshWrites 23 дня назад

    Loved it. Everything was fine but I believe you're too fast, I watched the video on 0.5X 😅