Hi,
I am running into a filtering issue with my Gallery Items.
I have a column "Destination", the values (text string) come from a multi-select combobox and are patched as
Upper(Concat('dcvcmbDestination-NR'.SelectedItems, Name & ","))
e.g.
1) 100 block,
2) 100 block, 200 block
3) 1200 block
When I am now filtering the archived records based on "Destination" with the filter criteria coming from a combobox single select.
Filter: 200 block (bring back all records where i have 200 block in my Destination column)
Results based on the 3 example above:
2) 100 block, 200 block (--> as expected)
3) 1200 block (--> 1200 block - the filter finds and returns the 200 block string from 1200 block, whereas I only want to return "exact matches within the complete string)
For this example the filtered result should only be
2) 100 block, 200 block
Is this possible? How? I may just not know the correct command.
Thanks a lot