Hi @kdunk ,
Do you want to display not only the submitted data but also the entering data in the gallery?
Please notice that: if you set the gallery's Items to one table , it will only display the items existing in that table.
The item that has not submitted does not exists in the table. So the gallery could not display that kind of data.
However, here's an alternative solution:
make the gallery display a collection, not the data source directly
when you are typing data in the new item, you will update that collection
when you submit the new form, you will update your data source
I've made a similar test for your reference:
1)set the app's OnStart:
ClearCollect(collection1,datasourcename)
2)set the gallery's Items:
collection1
3)set the add item button's OnSelect:
NewForm(formname);
ResetForm(formname);
Patch(collection1,Defaults(collection1),{'Type of Sweep':""})
//create a new item in the collection
4)set the new form's data source:
datasourcename
4)set 'Type of Sweep' drop down's OnChange:
Patch(collectoion1,Last(collection1),{'Type of Sweep' :'Type of Sweep'datacardname.Update})
set 'Plaza' drop down's OnChange:
Patch(collectoion1,Last(collection1),{'Plaza' :'Plaza'datacardname.Update})
set 'Employee' drop down's OnChange:
Patch(collectoion1,Last(collection1),{'Employee' :'Employee'datacardname.Update})
set 'Start Time' drop down's OnChange:
Patch(collectoion1,Last(collection1),{'Start Time' :'Start Time'datacardname.Update})
//update the last record in the collection
4)set the submit button's OnSelect:
SubmitForm(Formname);ClearCollect(collection1,datasourcename)
5)set the cancel button's OnSelect:
Remove(collection1,Last(collection1))
//delete the record that you create
Then when you open the new form, you will create an item in the collection. When you enter data in the new form, you will update data in the collection. When you submit the form, you will submit the form, you will save data to your data source and update the collection.
Best regards,