Hi,
I am trying to use a List Box (LBBA) to produce a filter (i.e. add items dynamically based on what is selected to query a single filed in the datasource) in a gallery. So essentially what I am trying to do is start the filter "normally" by specifying Filter('[dbo].[APLMAC]'; - from here I want to add the string that completes the rest of the filter syntax. From checking in a textbox it seems as though the rest of the filter syntax builds correctly.
However, it seems as though the the "Items" field in the Gallery does not accept the string which I am trying to append. Below is what I have in the "Items" field of my Gallery.
Filter('[dbo].[APLMAC]'; Left(Concat(LBBA.SelectedItems.Value;
Concatenate("Business_Area_Combined=""";Text(Value); """ || "));
Len(Concat(LBBA.SelectedItems.Value; Concatenate("Business_Area_Combined=";
Text(Value); " || """))) - 2) )Any other suggestions to dynamically search on a field with multiple queries using a listbox would be appreciated.
Thanks