Hi everyone, I am having a hard time figuring this one out. So I have a save button that saves the collection onto my SP lists. I have another button that generates the collection - new row button. As you can see on the client total (bottom) was incorrect as the collections update only when I hit the new row button. How can I refresh the collections before saving them to my sp list in order to have the right amount? Thanks in advance.
Here's new row button code
Collect(
GalleryPricingData,
{
Job_x0020_Category: JobCategory.Selected.Result,
Entity_x0020_Type: EntityType.Selected.Result,
Job_x0020_Type: JobType.Selected.Result,
Invoice_x0020_Description: InvoiceDescription.Value,
Min_x0020_Fee: MinFee.Value,
Qty: Quantity.Value,
Nominal_x0020_Value: NominalValue.Value,
Complexity_x0020_Value: ComplexityValue.Value,
Total: Total.Value,
Client_x0020_Name: ClientName.Selected.Result,
ClientGroup: ClientGroup.Value,
ClientCode: ClientCode.Value
}
)
Save button code
Collect(
'Saved Data-18162676-8464-4e9f-ae16-3c8b172e614d',
GalleryPricingData
);
Clear(GalleryPricingData);
Reset(ClientName);
Reset(ClientGroup);
Reset(ClientCode);
Notify(
"Record has been succesfully saved",
Success,
2000
);