I have SharePoint list I'm viewing in a PowerApps screen using the DataTable control. I need to filter down the rows based on if one of the fields (happens to be a choice of string values) has a certain value.
I have a drop-down control (Dropdown1) that has all the choices for that field. Its items property is "Choices('SD Fast'.Progress)".
Here is the expression that is used as the source (Items property) for the DataTable control:
Search('SD Fast', Text(Dropdown1.SelectedText.Value), "Progress")
I'm getting an error message on this expression: "The function search has some invalid arguments".
If I change the search to look at a plain text column, it works fine.
Please advise. Thanks, guys!