Hey! I have two lists in sharepoint. One with the general status of a recommendation and another where I want to put all the updates that will be made to the recommendation until it is completed. On a screen I would like to update the status in a list, using a path and at the same time submit a forms in the second list. The commands alone work fine, but when I try to put both on the same button, it just doesn't work. Here goes my code. Can you help me?
Patch('recommendations'; Gallery_view_recomendation.Selected;
{
'Status Geral': Dropdown_register.Selected.Value
});;
IfError(SubmitForm(Form_update); Notify("Error! ";NotificationType.Error);
Notify(
"Saved action plan registration";
NotificationType.Success;
3000
) And Refresh('register') And ViewForm(Form_update));;