Hi all! I’m here to ask for help again.
Context:
- I have an Objectives (as in OKRs) table with a lookup column that connects to Projects.
- I have a Projects table with a lookup column that connects to Tasks.
- I have a Tasks table.
Essentially, I want to track progress on objectives by measuring the number of tasks within that objective’s projects, and compare that to the number of completed tasks within that objective’s projects.
The Problem:
I’ve added a progress bar column to Objectives that uses a custom formula for both the maximum and the value, but they’re not being calculated correctly. These are the formulas I’ve used:
- Value: “thisRow.Projects.Tasks.Filter(TaskStatus.Contains(Complete)).Count()”
- Maximum: “thisRow.Projects.Tasks.Count()”
Here’s the link to the doc. Please take a look and let me know what I’m doing wrong with this progress bar.
Thank you in advance!