Hi,
I am trying to update all values within a column, when the reference = “123.
I think I have to use filter and Patch, however the patch function asks me for which record. As I want all the records updated that have reference “123” I am not sure what to include.
I have used the lookup function, but this only updates one record with a “123” reference, but I need them all.
Please can someone tell me what to include for the record section. I have put my code below – but need to replace the “[All Records within filter]” part of the code.
ClearCollect(colTest,tDisposal);
ForAll( colTest,
Filter( tDisposal, Property_Reference = "123"),
Patch( tDisposal, [All Records within filter],
{ Claimant_Company: "Company" }
)
)
Thanks