Hi folks,
I need help with a Coda formula to create a new subtask within an existing task. The subtask should correctly reference the full name of the parent task, even when the parent task’s name contains commas. My current formula splits the task name when it includes commas, leading to incorrect assignment. How can I modify my formula to handle this correctly? It’s driving me nuts ![]()
Here is the formula I’m using:
[All tasks]
.AddRow(
[All tasks].Tasks,
“New subtask”,
[All tasks].[Big steps],
thisRow.[Big steps],
[All tasks].Urgency,
thisRow.Urgency,
[All tasks].Importance,
thisRow.Importance,
[All tasks].[Parent task],
thisRow.Tasks
)
.OpenRow(
viewOrLayout: [Parent & subtask], viewMode: “center”
)

