Hello everyone,
I have created a PowerApps form that fills a Word template via Power Automate, converts it to a PDF, and sends it by email.


The app works perfectly....
Onselect= OnboardingStartformullar.Run(
txt_FirstName.Text;
txt_LastName.Text;
dd_Department.Selected.displayName;
dd_DepartmentHead.Selected.displayName;
dataPicker_StartDate.SelectedDate;
txt_Comments.Text;
dd_Administrator.Selected.displayName;
dataPicker_Current_Date.SelectedDate)
Now to my problem:
When I make a copy of my app and the Power Automate flow, and the copy of my app with the copy
So I have an exact copy of the app and my flow
OnSelect= Onboarding_Startformular_Kopie.Run(
txt_First_Name.Text;
txt_Last_Name.Text;
dd_Department.Selected.displayName;
dd_Department_Manager.Selected.displayName;
dataPicker_Entry_on.SelectedDate;
txt_Comments.Text;
dd_Administrator.Selected.displayName;
dataPicker_Current_Date.SelectedDate)
Why is Power Apps reporting an error here saying that the form is incorrect?
All data is exactly the same....
I have adapted the script in OnSelect from to the other flow.
I have changed in the onSelect Script the part OnboardingStartformullar.Run to Onboarding_Startformular_Kopie.Run
The contents are exactly the same.
What is different in the copy?
The same thing happens when I add additional fields to my app.
I have added the additional field in the Word document, in the app, in the flow, and in onSelect. Here, too, I get the same error message saying that there is an error in the formula...