If you are unable to create the combined bot with branch conditions, you could try creating 3 different bots.
Assuming your requirement is still the same, you could try the below
I hope you do not need help with the above requirement.
You could create data change bot that fires when the [Etat checklist] column changes to “Non Conforme”. Please note that data change bot fire only when there is a change in certain column values.
The event condition for this data change bot could be
AND( [_THISROW_BEFORE].[Etat checklist]<>[_THISROW_AFTER].[Etat checklist], [_THISROW_AFTER].[Etat checklist]=“Non Conforme”)
In this bot’s step just send the appview with the “Bloqué” and “Annullée” as quick edit column named “Action” to a specific person.
When this appview is sent to the user with the above quick edit column, the user can select either “Bloqué” or “Annullée”
@eldderri wrote:
Then, when The recipient chooses “Bloqué” ,the user receives appview with “Bloqué” selected and the Transporter receives just an email notification. And IF he chooses ,"Annullée ,only the user receives the appview with “Annullée” selected.
- Create a 2nd data change bot for “Bloqué” with an event condition
AND( [_THISROW_BEFORE].[Blocage Camion]<>[_THISROW_AFTER].[Blocage Camion], [_THISROW_AFTER].[Blocage Camion]=“Bloqué”)
In this bot, add 2 steps A) the appview to the use with “Bloqué” selected B) A step that send email to the transporter
- Create a 3rd data change bot for “Annullée” with an event condition
AND( [_THISROW_BEFORE].[Blocage Camion]<>[_THISROW_AFTER].[Blocage Camion], [_THISROW_AFTER].[Blocage Camion]=“Annullée”)
In this bot only add one step to send the Appview to the user with “Annullée” selected.
Hope this makes sense.