Hi just created a custom power app form by clicking the custom form on SharePoint. I am stuck with moving items to the folder a user is working on because the data entered goes to the root list.
If(
FormMode = FormMode.New,
Set(
varResult,
HKEMoveItemtoFolder.Run(
SelectFolder.Selected.'Folder path',
SharePointForm1.LastSubmit.'Full Path'
)
);
If(
varResult.success = "true",
Notify(
"Success",
NotificationType.Success
),
Notify(
"Failure",
NotificationType.Error
)
);
);
ResetForm(SharePointForm1)
But when I click the submit button the data entered still goes to the root list, I also noticed that the flow did not run. help?

Report
All responses (
Answers (