Do you need to create a wildcard search in Microsoft PowerApps. There is no native support for wildcard searches in PowerApps. But below is one possible solution on how to make it work. The solution: Clear(newCollection);
ForAll( Split( TextInput.Text, “*” ) As SplitMe,
Collect( newCollection, Filter( [Your Data Source], Trim(SplitMe.Result) …