I use obsidian to track goals, for example, I’m reading a book and I have a due date and a number of pages I want to read each day. So, my frontmatter has something like the following
---
currentPage: 153
goalDueDate: 2022-08-03
---
I want to add a primary indicator variable to my frontmatter which is “curretPage / 45” (45 being the amount of pages per day)
Is there some way I can add a calculated field to my front matter (or page metadata)?
---
currentPage: 153
goalDueDate: 2022-08-03
goalIndicator: currentPage / 45
---