Hi,
I have this formula on button:
ClearCollect(
ToUpdateCollection,
Filter(
'WELDER LOG REGISTER',
'Joint Number' = ThisItem.'Joint Number',
'Production Order Induk' = ProdInduk.Text
)
);
ForAll(
ToUpdateCollection,
Patch(
'WELDER LOG REGISTER',
ThisRecord,
{'Repair by': Welder.SelectedItems}
)
)
But, when I click button, previous value in 'Repair by' will be replace to the new one. I want, when I click, the new value will be appear side by side with the previous value.
Repair by is choice column type (can multiple choice). How to do it? Thankyou!