Your cart is currently empty!
Forming a habit is challenging.
But with the right tools and strategies, it’ll become much easier.
One effective tool for tracking and maintaining habits is a Notion habit tracker.
Why Do We Need a Habit Tracker?
A habit tracker helps us to:
- Visually see our consistency
- Hold us accountable for our own actions
- Identify patterns in our habits (so we can make adjustments if needed)
- Stay focused on our objectives
Why Notion is the Best Tool for Making a Habit Tracker
Notion is an all-in-one workspace that offers flexibility for creating personalized habit trackers.
You can customize templates and databases to suit your specific needs.
Also, you can make it aesthetically pleasing.
Whether you’re into a simple look or a fancy tracking system,
Notion has got you covered to make a habit tracker that suits your style.
3 Ways to make a habit tracker with Notion
1. Daily Habit Tracker
- Create a new database with a table view.
- Enter habits as the checkbox properties to display them at the top of the table.
- Add a “Created Time” property to record the date.
- Create a row for each day and mark completed tasks as checked.
- Use a Formula property to track your progress.
- Add another Formula to display the weekday of the date.
Database Properties
Property | Content | How it works | |
---|---|---|---|
1. Day | Name | @Today —— 8 November, 2023 | |
2. Weekday | Formula | formatDate(prop(“Created time”), “ddd”) | ddd = Wed dddd = Wednesday |
3. Completion | Formula | round((toNumber(prop(“Read”)) + toNumber(prop(“Workout”)) +toNumber(prop(“Meditate”)))/3/0.01)*0.01 | 1. toNumber() Turn checkbox properties into numbers. Checked=1, Unchecked=0. 2. round( _____ /0.01 ) * 0.01 3. 3 is number of habits. |
4. Habits | Checkbox |
Completion Formula – Graphic Explanation
round((toNumber(prop("Read")) + toNumber(prop("Workout")) +toNumber(prop("Meditate")))/3/0.01)*0.01
Automation
Add a new entry everyday
- Create a database template & set as default.
- Set Repeat > every day.
Display a “Habit Card” on Your Dashboard
If you want to display a “habit card” (a sidebar notification) on your dashboard:
- Create a gallery view.
- Set Filter > Created Time > is Today
- Adjust the visibility of the property to display on the card: weekday, your habits, and progress.
Pros & Cons
- Pros:
- Suitable for habits requiring daily consistency.
- Suitable if you also want a calendar view.
- Cons:
- May feel overwhelming for habits that don’t need daily tracking.
- Whenever you add or delete a new habit, you will need to edit the progress formula.
Want to copy the databases so you don't have to create them from scratch? You can duplicate the template HERE.
2. Weekly Habit Tracker
- Create a new database with a table view.
- Enter weekdays as the checkbox properties to display them at the top of the table.
- Create a row for your habits.
- To set the frequency of your habit, add a “Select” property.
Include options for 1-7 days per week. - Use a Formula property to track your progress.
Database Properties
Property | Content | How it works | |
---|---|---|---|
1. Habits | Name | @Today —— 8 November, 2023 | |
2. Frequency | Select | 1-7 days / week | |
3. Completion | Formula | round ( (toNumber(prop(“Mon”)) + toNumber(prop(“Tue”)) + toNumber(prop(“Wed”)) + toNumber(prop(“Thur”)) + toNumber(prop(“Fri”)) + toNumber(prop(“Sat”)) + toNumber(prop(“Sun”)))/ toNumber(substring(prop(“Frequency”),0,1)) / 0.01 ) * 0.01 | 1. toNumber(prop(“”)) turns checkbox properties into numbers. Checked=1, Unchecked=0. 2. round( _____ /0.01 ) * 0.01 3. toNumber(substring(prop(“Frequency”),0,1)) (1) Substring(prop(“Frequency”),0,1) returns the 1st text of the Frequency property; (2) toNumber() turns the returned text into number. |
4. Mon. – Sun. | Checkbox |
Completion Formula – Graphic Explanation
round ( (toNumber(prop("Mon")) + toNumber(prop("Tue")) + toNumber(prop("Wed")) + toNumber(prop("Thur")) + toNumber(prop("Fri")) + toNumber(prop("Sat")) + toNumber(prop("Sun")))/ toNumber(substring(prop("Frequency"),0,1)) / 0.01 ) * 0.01
Pros & Cons
- Pros:
- Allow to set different frequency for each habit.
- No need to edit the formula whenever you add or delete a habit or change the frequency.
- Cons:
Each week is a single database,
might be hard to track habits for a long period of time.
Want to copy the databases so you don't have to create them from scratch? You can duplicate the template HERE.
3. Monthly Habit Tracker
- Create a new database with a table view.
One database tracks a single habit. - Enter 31 days as checkbox properties to display them at the top of the table.
- Create a row for each month.
- Use a Formula property to track your progress.
Database Property
Property | Content | How it works | |
---|---|---|---|
1. Month | Name | @Today —— 8 November, 2023 | |
2. Completion | Formula | round((toNumber(prop(“1”))+toNumber(prop(“2”))+ … +toNumber(prop(“31”)))/ 31 /0.01) * 0.01 | 1. toNumber(prop(“”)) turns checkbox properties into numbers. Checked=1, Unchecked=0. 2. round( _____ /0.01 ) * 0.01 |
3. Days 1st-31 | Checkbox |
Completion Formula – Graphic Explanation
round((toNumber(prop("1"))+toNumber(prop("2"))+toNumber(prop("3"))+toNumber(prop("4"))+toNumber(prop("5"))+toNumber(prop("6"))+toNumber(prop("7"))+toNumber(prop("8"))+toNumber(prop("9"))+toNumber(prop("10"))+toNumber(prop("11"))+toNumber(prop("12"))+toNumber(prop("13"))+toNumber(prop("14"))+toNumber(prop("15"))+toNumber(prop("16"))+toNumber(prop("17"))+toNumber(prop("18"))+toNumber(prop("19"))+toNumber(prop("20"))+toNumber(prop("21"))+toNumber(prop("22"))+toNumber(prop("23"))+toNumber(prop("24"))+toNumber(prop("25"))+toNumber(prop("26"))+toNumber(prop("27"))+toNumber(prop("28"))+toNumber(prop("29"))+toNumber(prop("30"))+toNumber(prop("31")))/ 31 /0.01) * 0.01
Pros & Cons
- Pros:
Suitable for habits requiring daily consistency. - Cons:
- Each habit is a single database.
If you want to track multiple habits, you’ll have to create several databases. - The number of days in each month varies, but in this database, they all need to be set to 31. For example, June has 30 days, but you still need to check all 31 boxes to calculate the correct progress percentage.
- It can be tiring to create 31 checkbox properties and set up the formula.
- Each habit is a single database.
Want to copy the databases so you don't have to create them from scratch? You can duplicate the template HERE.
Forming a habit is a powerful way to improve our lives.
And a habit tracker can make the progress easier.
Notion’s flexibility and customization options make it a wonderful tool or creating a habit tracker.
Let’s make a habit tracker that’s perfect for you!
P.S. Remember:
the key is to stay consistent and celebrate your progress along the way.
Happy tracking!