The Ultimate Habit Tracker in Notion

The Ultimate Habit Tracker in Notion

Easlo

1 год назад

203,824 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@guilhermesilvapedro1691
@guilhermesilvapedro1691 - 13.02.2024 23:08

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

Ответить
@sammilan819
@sammilan819 - 11.02.2024 15:10

Formula is not working

Ответить
@calvinperez5370
@calvinperez5370 - 30.01.2024 19:18

This is the best habbit tracker in notion

Ответить
@huynhthaihoang1621
@huynhthaihoang1621 - 21.01.2024 06:31

This is absolutely helpful for me, Thanks!

Ответить
@rockyruntz
@rockyruntz - 16.01.2024 17:55

i was having trouble with the formula after the new update and got this one to work perfect 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

Ответить
@merveguldincer8767
@merveguldincer8767 - 15.01.2024 23:48

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?

Ответить
@Hi_Rachie
@Hi_Rachie - 14.01.2024 09:13

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

Ответить
@thegaavr
@thegaavr - 13.01.2024 10:02

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

Ответить
@EduardoPerez-uf9nq
@EduardoPerez-uf9nq - 10.01.2024 03:27

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

Ответить
@pranavborse91
@pranavborse91 - 08.01.2024 02:40

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)

Ответить
@ArTheSergeant
@ArTheSergeant - 07.01.2024 21:59

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

Ответить
@halimahcahyaningfajri3233
@halimahcahyaningfajri3233 - 07.01.2024 17:46

Soo much helpful! I loove this template😍

Ответить
@alexlopezzhg
@alexlopezzhg - 06.01.2024 21:38

it wasn't helpful, code is wrong

Ответить
@Niekchentest
@Niekchentest - 05.01.2024 16: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 :/

Ответить
@RahulYadav-yg6zh
@RahulYadav-yg6zh - 05.01.2024 06:38

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

Ответить
@iceicebabyy
@iceicebabyy - 04.01.2024 20:24

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

Ответить
@chinsetgelnyamjav4180
@chinsetgelnyamjav4180 - 04.01.2024 06:36

Nice, useful

Ответить
@user-bw3lz8hh7d
@user-bw3lz8hh7d - 03.01.2024 04:37

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

Ответить
@Algizin
@Algizin - 02.01.2024 21:29

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

Ответить
@AyBeX-hj7gr
@AyBeX-hj7gr - 01.01.2024 17:26

thank you for your simplicity💌

Ответить
@Rezzahs
@Rezzahs - 01.01.2024 07:47

very Useful Videooo and tutorial very clear..thxxx

Ответить
@tajburrow25
@tajburrow25 - 30.12.2023 09:10

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

Ответить
@shaofasick7913
@shaofasick7913 - 11.12.2023 15:04

useful video

Ответить
@ecojumeau
@ecojumeau - 07.12.2023 18:21

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

Ответить
@residentialstudio1897
@residentialstudio1897 - 07.12.2023 08:28

Amazing !

Ответить
@CellesNunes
@CellesNunes - 06.12.2023 23:08

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?

Ответить
@rouoh5634
@rouoh5634 - 05.12.2023 16:53

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.

Ответить
@ismailsaleh3536
@ismailsaleh3536 - 04.12.2023 03:14

there is one problem which is: i spent like 1 hour making it while the video is 4 mins

Ответить
@kpop_k
@kpop_k - 30.11.2023 03:32

Someone can help me? Even when I allow Notion2charts to access my pages, the page where is the habit tracker don’t show

Ответить
@aymandanish
@aymandanish - 19.11.2023 07:53

if someone want try another formula its
(Meditate.toNumber() + Exercise.toNumber() +
Journal.toNumber()) / 3

I founds out its work for me😊

Ответить
@janaameen3901
@janaameen3901 - 19.11.2023 01:25

It's overwhelming 😞

Ответить
@Lupelifts-lm2zn
@Lupelifts-lm2zn - 14.11.2023 21:12

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

Ответить
@Eddie.Moore2.0
@Eddie.Moore2.0 - 27.10.2023 04:42

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....

Ответить
@artemnovikov7611
@artemnovikov7611 - 26.10.2023 21:01

Thanks, bro. I`m so happy)

Ответить
@GregorSchafrothAI
@GregorSchafrothAI - 17.10.2023 10:04

Man dont force ppl to subscribe to your newsletter for downloading this, thats a lame move

Ответить
@GregorSchafrothAI
@GregorSchafrothAI - 17.10.2023 10:02

Super great video thanks for sharing! But please don't shock viewers with this loud music in the end. If you dont want to remove it at least turn it down (or alternative make your voice louder)
Also I think this video would be easier to understand for many people if you use more standard English (Nothing against Singlish but it can be difficult to understand for folks who never heard it haha)
Keep up the great work!

Ответить
@Reznov0ps143
@Reznov0ps143 - 17.10.2023 05:51

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

Ответить
@hedonist5600
@hedonist5600 - 16.10.2023 10:56

Thanks a million!

Ответить
@Guilherme.Melo01
@Guilherme.Melo01 - 15.10.2023 19:57

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

Ответить
@Darkborn781
@Darkborn781 - 11.10.2023 06:20

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

Ответить
@katymichealson7309
@katymichealson7309 - 03.10.2023 18:29

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

Ответить
@Pandodora
@Pandodora - 01.10.2023 18:13

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?

Ответить
@philosophe2517
@philosophe2517 - 26.09.2023 23:35

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

Ответить
@Monakate2
@Monakate2 - 13.09.2023 05:01

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

Ответить
@abdulbasir8740
@abdulbasir8740 - 13.09.2023 04:21

This is amazing

Ответить
@devi_vivi15
@devi_vivi15 - 30.08.2023 19:33

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! 💗

Ответить
@mariawalkiewicz9407
@mariawalkiewicz9407 - 27.08.2023 17:55

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

Ответить
@luigicecere9772
@luigicecere9772 - 27.08.2023 03:23

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?

Ответить