Hello, PA Gurus
I'm sure there is a simple answer to this, but I have not been able to figure it out...
I have a gallery with a 2 column table for the data source: 'PartNumber' & 'PartDescription'
(Table schema):
tblMaterialList = Table(
{
'PartNumber':"",
'PartDescription':"Consumables"
},
{
'PartNumber':"1210112",
'PartDescription':"Connector Male 3/4"" Tube x 3/4"""
},
{
'PartNumber':"1210116",
'PartDescription':"Connector Male 3/4"" Tube x 1"""
},
I am trying to filter / search the table by PartNumber or PartDescription with the following formula on the gallery Items:
Filter(tblMaterialList, txt_FieldTickets_MaterialSearch.Text in 'PartNumber' || txt_FieldTickets_MaterialSearch.Text in 'PartDescription')
The result works up to 3 characters in the text box and then nothing returns (if I type 600112 the gallery is empty):

What am I missing here?
Thanks in advance!