Hi @alecnelson01 ,
Does your Collection have a Unique Identifier or ID?
I was doing something similar with a Gallery recently and I was having trouble using the Patch() function. I ended up using an UpdateIf() instead. Something like:
UpdateIf('NPNF.PART_BOM', ID=ThisItem.ID, {ID:ThisItem.ID,QNTY_NUM:Value(Self.Text)})
When I was adding Items to the Collection (from the click on an Add icon), I used something like:
Collect(
'NPNF.PART_BOM',
{
ID: If(
CountRows('NPNF.PART_BOM') > 0,
Last('NPNF.PART_BOM').ID + 1,
1
),
QNTY_NUM: 0
}
);
This is all assuming you are working with a Collection.
If I've answered your question or solved your problem, please mark this question as answered. This helps others who have the same question find a solution quickly via the forum search. If you liked my response, please consider giving it a thumbs up. I am trying to become a Super User like @WarrenBelz
Thanks.
-Mark