Hi @PowerBridge :
Could you tell me what "WO_test"'s datatype is?I assume it is a text column.
I assume there is a collection something like:
ClearCollect(
Col_Sample,
{
ID: 1,
WO: Table(
{WO_test: "A"},
{WO_test: "B"}
)
},
{
ID: 2,
WO: Table({WO_test: "C"})
},
{
ID: 3,
WO: Table({WO_test: "D"})
}
)
1\Add a TextInput control(TextInput1)
2\Add a gallery and set it's items property to:
Filter(Col_Sample,TextInput1.Text in WO.WO_test)

Best Regards,
Bof