Hi@kmw1130,
Based on the issue that you mentioned, do you want to save the collection to your SP list?
Could you please tell me that if this collection is your repeating table in the Gallery?
Actually, you could directly populate a Gallery with the collection, and then patch all the gallery items to SP list.
Please try the following formula:
ForAll(
YouGalleryName.AllItems,
If(!IsBlank(LineType),Patch('Program Tracking',
Defaults('Program Tracking'),
{Title: LineTypeLabel.Text,
'Contract Name': LineProgramNameLabel.Text,
'Assigned To': LineAssignedToLabel.Text,
'Date Identified': DateValue(LineDateIdentifiedLabel.Text),
'Date Closed': DateValue(LineDateClosedLabel.Text),
'Description': LineDescriptionLabel.Text,
'Tracking Resolution': Value(LineResolutionLabel.Text),
Likelihood: Value(LineLikelihoodLabel.Text),
Impact: Value(LineImpacLabel.Textt),
BU: LineBULabel.Text,
ProgramID: FormIssues.LastSubmit.ID})));
Navigate(TrackingOverviewScreen,ScreenTransition.Fade)
Hope it could help.
Regards,
Qi