Hi!
I have a panel that displays projects with field like project_id and project_title. Each project has tasks (task_id). How do i calculate the number of tasks in the same project?
Thank you!
| stats count(task_id) by project_id
or
| stats dc(task_id) by project_id
as you like