I have a custom SharePoint list form where I set up a combobox using a lookup list of values. The combobox is multiple select enabled and it stores the result in a multiple lines of (plain) text field in the SharePoint list. I need to compare the values in the combobox with the value saved in the text field to know when the field has been updated.
I have tried comparing Concat(TaskValue.SelectedItems, Title, ", ") with ThisItem.Task
Concat(TaskValue.SelectedItems, Title, ", ") = ThisItem.Task
and this never evaluates to true, so it always thinks there's been a change.
How can I compare the value currently in the combobox and the value stored in the Task multiple line of plain text field accurately?