hi,
got a sharepoint list that user fills in and that i customized with powerapps... once user opens the form he can choose one option that brings him to a new screen (within the same app). This Form on the new screen is also connected to the same source. Additionally look for some other values from other SPO Lists... Once the user inputs some data and click submits i want the form to "submit form" but also to "patch" a value to a different list (that is however connected)... the problem is that only the patch works, the submitform not... the formula i have for the submit button is
SubmitForm(Form_holiday);
Patch(
HR_settings,
First(
Filter(
HR_settings,
UPN = 'upn-label_1'.Text
)
),
{RestVacationDays: Value(value_available_days_new.Text)}
)
edit: it seems that not even SubmitForm alone works, must be related to multiple screens, no idea so far