Apr 05, 2022 03:29 PM
I have a base my team uses for resource planning and time tracking. I assign tasks and hours in the Gantt view, tasks sometimes span days and weeks (there is a start date, end date, and duration field). My employees then add their actual hours to the existing records as a time sheet.
The problem I’m running into is that when assigning multi day tasks only one assignment record is created for the first day of the task, and all assigned hours are put on that task. I need an automation that will create a new record for every unique date between the start and end date of a task, duplicating all other attribute information and assigning the appropriate daily hours according to a formula.
Is this possible within Airtable or do I need to use a different service?
Thanks in advance for any thoughts or advice!
Solved! Go to Solution.
Apr 05, 2022 05:06 PM
This is possible with Airtable. This can be done with or without scripting.
To do this with scripting, you need a custom script, but you would not need to create any other fields.
To do this without a script, you need automations and some additional fields.
DATETIME_DIFF()
and your start and end dates.MAX(values)
.Apr 05, 2022 05:06 PM
This is possible with Airtable. This can be done with or without scripting.
To do this with scripting, you need a custom script, but you would not need to create any other fields.
To do this without a script, you need automations and some additional fields.
DATETIME_DIFF()
and your start and end dates.MAX(values)
.