Hey guys,
Am facing such a weird issue where I have split a form into two sections on the same screen for layout purposes. The first form works perfectly, but the problem arises with the second form. It only patches one of the fields, while the others, which involve dynamic calculations, are saved as zeros in my Dataverse. I'm unsure if the dynamic nature of these fields is causing the issue.
If anyone can help me here i would really appreciate it am genuinely confused as to why this is happening.
On the button
If(
SubmitForm(formPO),
Notify("PO has been created successfully!", NotificationType.Success);
Navigate(scrIRRequest, ScreenTransition.Fade),
Notify("An error occurred while adding the new PO.", NotificationType.Error)
);
on the form success
Patch('PO Tables', formPO.LastSubmit, formPO_4.Updates);