Re: Shipping Contents Collection Won't Write to SharePoint
@RandyHayes
Good morning Randy,
I've tried the formula in both the OnSelect of the SUBMIT FORM button and the OnSuccess property of frmMaster. I assume the latter is the correct place to write it as I want the contents to be connected to the req number that will be created once frmMaster is successfully submitted.

When I saw the "Incompatible type" error message I double-checked my Quantity column in the SharePoint list and it is a Number type column. The format of the Text input field was set to Text so I changed it to Number, but it did not resolve the error. I'm not sure what to try next.

I currently have 3 different ID types. The internal SharePoint ID, the 5-digit ID I am showing in the gallery since I don't have enough space for the long one, and the long ID I would like to record for the sake of reporting purposes (a separate screen I plan to build for the Logistics team).

Here is the current OnSuccess formula for frmMaster:
Patch(FormPageStatus, {Page: CurrentPage.Page}, {Status: "Complete"});
UpdateContext({conFinalConf:true});
UpdateIf('Domestic Shipping Requests', ID=Self.LastSubmit.ID,{'Request Number': Self.LastSubmit.ID + 10000});
Collect('Shipping Request Contents',colContents)
The first line updates the progress tracker. The second line launches a confirmation pop-up with further instructions. The third updates the 5 digit ID. The Collect formula is the only piece not cooperating thus far.

Thanks for helping me Randy. I know you are busy with your own work so I really appreciate it - Teresa