I have an App with multiple forms and data sources. I am trying to begin the app on a home screen that asks for a project number, like so: 
When you enter the project number and click begin, the OnSelect property calls Set(projectNumber, ProjectInput.Text);Navigate('FormOne',ScreenTransition.Fade).
This is correctly setting the global variable 'projectNumber' to the text input. Then once the app navigates to the next form, I am trying to set the 'Title' field so that it displays the project number and is non-editable to the user, essentially just displaying the project number at the top. I have it displaying properly by setting the 'Title' - 'DateCardValue' Default to the projectNumber global variable.
The problem is when I go to submit the form using SubmitForm(FormOne), it is not submitting because 'Title' is a required field, and the form is not recognizing that this field already has a pre-filled value. Any thoughts on how I could make this work? I am going to have multiple forms that all submit to their own sharepoint list, but they should all share this projectNumber variable prior to submission.