Habit Tracker for 1 Habit

  1. You need One Checkbox Property, and it should be named: Habit 1
  2. Then copy and paste the Formula Code

floor((100 * ((toNumber(prop("Habit 1"))))) / 1) / 100

Habit Tracker for 2 Habits

  1. You need Two Checkbox Properties, and it should be named: Habit 1 Habit 2
  2. Then copy and paste the Formula Code

floor((100 * ((toNumber(prop("Habit 1")) + toNumber(prop("Habit 2"))))) / 2) / 100

Habit Tracker for 3 Habits

  1. You need Three Checkbox Properties, and it should be named: Habit 1 Habit 2 Habit 3
  2. Then copy and paste the Formula Code

floor((100 * ((toNumber(prop("Habit 1")) + toNumber(prop("Habit 2")) + toNumber(prop("Habit 3"))))) / 3) / 100

Habit Tracker for 4 Habits

  1. You need Four Checkbox Properties, and it should be named: Habit 1 Habit 2 Habit 3 Habit 4
  2. Then copy and paste the Formula Code

floor((100 * ((toNumber(prop("Habit 1")) + toNumber(prop("Habit 2")) + toNumber(prop("Habit 3")) + toNumber(prop("Habit 4"))))) / 4) / 100

Habit Tracker for 5 Habits

  1. You need Five Checkbox Properties, and it should be named: Habit 1 Habit 2 Habit 3 Habit 4 Habit 5
  2. Then copy and paste the Formula Code

floor((100 * ((toNumber(prop("Habit 1")) + toNumber(prop("Habit 2")) + toNumber(prop("Habit 3")) + toNumber(prop("Habit 4")) + toNumber(prop("Habit 5"))))) / 5) / 100