@water-guy-5
I'd recommend using a Form over trying to build out all the controls yourself. PowerApps will tie all the record columns and controls together for you. Then a simple SubmitForm will put all the data exactly where it needs.
Building it out yourself just is a lot more work than you need to do.
As for your specific response to the last post, your formula is wrong and the behavioral action is not correct. You would have put this on the OnSelect action of the button:
Patch(ListName, Defaults(ListName), {'Name of Respondent' : TextInput1.Text})
Note, if you are trying to create a record with the above formula every time, then you can also use:
Collect(ListName, {'Name of Respondent' : TextInput1.Text})
I hope this is helpful for you.