Hi,
I have 2 collections with similar data:
Collection colItemsHardware Collection colMyItems
Item 1 Item 1
Item 2 Item 2
Item 5 Item 8
Item 8
I want to update some column ( IsChoosen ) at the collection colItemsHardware only if this item exists in collection colMyItems.
So I put a button with this formula:
ForAll(colMyItems,
UpdateIf(colItemsHardware, colItemsHardware.Name = ThisRecord.Name ,{IsChoosen: true}))
But it does not work.
Thanks for any help!