Hi all,
Is there a way that I can replace my Startswith function with 'Contains' or 'Substring' in PowerApps?
Report Owner Name: Joe Smith
Report Number: R2021/07
So that when I search in 'Smith' or '2021' or '07' the Gallery can return the desired results.
Thank you.
If(
!IsBlank(
LookUp(
'Report List',
Title = varUserName
).Title),
Sort(Filter('Report List', varUserName = 'Report Owner Name' || 'Report Status'.Value = "Complete"),
StartsWith('Report Owner Name', InpSearch.Text)|| StartsWith('Report Number', InpSearch.Text)
),
else statement
)