Description
I have a Tasks table with a multi-select field (e.g. values: A, B, C).
I also have a Subtasks table linked to Tasks.
Goal:
When the multi-select field on a Task contains A and B, the automation should create two Subtask records:
-
one Subtask called A
-
one Subtask called B
(both linked to the same Task)
Current setup:
-
Trigger: When record is updated
-
Field watched: multi-select field on Tasks
-
Run Conditional Logic
-
If condition are met: Type = A → create record A in subtask table
-
Otherwise If condition are met: Type = B → create record B in subtask table
-
Problems:
- Type in Task table = A & B, but the automation only run A
How do i fix this? Thanks in advance

