Naru Muraleedharan
01/14/2025, 8:03 AMcreated_at
but not started_at
or completed_at
, it's in the "To-do" status.
If it has started_at
but not completed_at
, it's in "In Progress", and finally;
If it has completed_at
, it's in the "Done" status.
I want to create a stacked area chart which shows the number of tasks by status each month. I expect I need to use Metrics and MAQL here to do so.
The x axis is month and y axis is the # of tasks.
At the end of each month, I need:
1. The total number of tasks created in that month (created_at
is during the month)
2. The total number of tasks being worked on at the end of the month (started_at
is set on/before the month but completed_at
is either not set or after the month)
3. The total number of tasks completed in that month (completed_at
is in that month).
How can I set this up?Joseph Heun
01/14/2025, 8:43 AMNaru Muraleedharan
01/14/2025, 3:01 PM