Hi@JRobinson12,
Based on the issue that you mentioned, do you want to clear the form Individual field content once collect it to a collection?
Could you please share a bit more about your scenario, is this all Text fields?
I have a test on my side, there are several Text fields within my Form.
I assume that your fields are all Text type, Collect() and Reset() could achieve your needs.
Set the OnChange property of the TextInput control within the corresponding Text DataCard as below:
Collect(ColForm,DataCardValue9.Text);Reset(DataCardValue9)
Note: DataCardValue9 represents the TextInput control within the corresponding Text DataCard.
If you have some complex type fields within your data source, like Choice or something else, you could consider using ResetForm() function. Considering you want to Submit as well, you can add ResetForm() function to the OnSelect property of the Submit Button as below:
SubmitForm(EditForm1);ResetForm(EditForm1)
Best Regards,
Qi