Comment dans un workflows, réaliser plusieurs actions indépendantes suivant des conditions. Exemple si A=1 ajouter une ligne à une table et si B=1 renseigner une cellule.
Dans mon cas, si les deux conditions sont remplies, seule la 1er action est exécutée, la seconde etant ignorée.
In a user-triggered workflow, if you need both A = 1 and B = 1, you must handle them together in a single branch. You can’t treat them as two separate, independent branches.
In a manual workflow, you can layer your logic instead. First, create a condition that checks if A = 1. Inside that branch, add another condition that checks if B = 1 and add actions there.
The key idea is that condition branches are compared against each other as whole branches, not run one by one independently.
Adding onto what @ThinhDinh is saying: If you need a user to trigger that workflow follow these steps:
- Add a “Manual Trigger” workflow with all the conditions etc as described by @ThinhDinh.
- Then on the button or whatever user interaction you are using, just add a Trigger Workflow action and select the workflow you just created.
En fait je voudrai que si A=1, ajouter une ligne à une table, si B=1 ajouter une “autre” ligne à une table, etc. Dans mon cas je ne sais pas comment faire avec glide apps, lorsque je crée la condition A=1, glide me propose soit add branch ou add else. Dans ce cas lorsque la première condition est réussie, B=1 par exemple, glide ne continue pas vers les autres branches C=1, D=1, …
Merci pour votre aide.