Is there a possibility to set up a “running” task - a task with a start date, but no end date? I would like to achieve behavior in Gantt view similar to the following: assume the numbers below refer to days:
1 2 3 4 5 6 7 8 9
Let’s say “today” is day 2, and I open a running task A starting from “today” - then the Gantt visualisation will be a “day symbol” (like for the existing Milestone type - but let’s use *
here), so maybe something like this:
1 2 3 4 5 6 7 8 9
A *
Then, I login the “next day”, - so, on day 3 - and I’d observe the task entry to be “extended” to “today”, say like this:
1 2 3 4 5 6 7 8 9
A *--]
Let’s say I create another running task here, B - I’d have this:
1 2 3 4 5 6 7 8 9
A *--]
B *
Then, I login the “next day”, - so, on day 4 - and I’d observe the task entries to be “extended” to “today”, like this:
1 2 3 4 5 6 7 8 9
A *-----]
B *--]
So, let’s say I’m done with task A “today” - then I simply set “today” as an end date - and it stops being a “running” task, and instead becomes the regular start+end date type of task in monday.com - so the state becomes:
1 2 3 4 5 6 7 8 9
A *-----*
B *--]
Then, I login the “next day”, - so, on day 5 - and I’d observe only the B task entry to be “extended” to “today” (since A is not a running task anymore), like this:
1 2 3 4 5 6 7 8 9
A *-----*
B *-----]
… and so on …
Is there a facility for something like this in the web UI? Lacking that, could I use the API (or some scripting?) to achieve something like this?