Thanks to this forum I've made great progress on my app (thank you!) To help fine tune, I'm hoping to reduce the amount of "noise" created in my SharePoint list when there is a submission.
The app is currently setup as a Gallery with 6 "inputs". Once a date is selected, that date is automatically populated to all 6 fields within each "input". However, some of my colleagues may not need all 6 "inputs" when submitting their time. Is it possible to only have the Patch Function add a row of data when let's say the "ClientDD_1" has a value? Below is the current formula that is successfully passing all 6 records to my SharePoint list:
ForAll(
Gallery1.AllItems,
Patch('Time Entries v1', Defaults('Time Entries v1'),
{WeekEnding: WeekEnding_1.Text, TimeWorked: TimeWorked_1.Text, WeekNotes: Notes1_1.Text, Client: ClientDD_1.SelectedText.Value, Category: CategoryDD_1.SelectedText.Value}))
;
Navigate(Confirmation,None)
Thank you in advance!