I have a small form with only 7 fields. The primary SharePoint list is called "Change Request." 5 of the fields presented in the form are coming from this Change Request list.
One of the requirements is to have 2 of the fields be cascading, meaning the values presented in the 2nd column are dependent on the choice from the 1st. The names of those columns are "System" and "Limit Type." Based on what a user selects in the System field, Limit Type will show different results. I followed this article to setup a new list called "Change Request_Cascading", created single line of text columns, and the cascading function is working as expected - Create Cascading (Dependent) Dropdowns In Power Apps (matthewdevaney.com)
The problem now is that after submitting a new form, the values from System and Limit Type are not visible in the Change Request list. I tried creating lookup columns on Change Request that point to those columns on Change Request_Cascading, but they are still showing up as blank.
I suspect what I need to do is set the On Select of my save button to both Submit the form and patch the Change Request list with the values from System and Limit Type, but I'm not sure how to construct that (I'm new to Power Apps). Currently the OnSelect property of my save button only has SubmitForm(Form1).
Another issue is that after submitting the form now, if I go to submit a 2nd one right after that, I get the dreaded "Getting your data" error. If I close the app and start over, it works. I suspect I need a reset somewhere to get around this.