Hi, I see a lot of posts about the correct syntax for using multiple filters at the same time. But all I need to do is to filter by whichever textbox is chosen by the user. I have this working fine with the one textbox:
This is set to the Item Property of the datatable:
Filter([@PT_TrackingDataFinal], StartsWith(so, TextInput1.Text))
But I can't figure out the syntax for adding a second filter to the item property of the datatable so that the user can filter from a different column . It should filter like this if it were a single filter added to the Item Property:
Filter([@PT_TrackingDataFinal], StartsWith(PO, TextInput2.Text)
any help would be appreciated. Thanks