Hi,
I'm not sure what's wrong with this statement. It creates neither an error nor shows any sharepoint records in the gallery? I put the code inside the Items property of my gallery. 'Search Box'.Text is the text input field and I want to filter only if it's empty (and display the entire sharepoint list if not). Can someone please help me?
If (
!IsBlank('Search Box'.Text),
Filter(
DWBExtractMigrationv1162,
StartsWith(
"EDG-ID", Value('Search Box'.Text)) ||
StartsWith(
"RequestStatus", 'Search Box'.Text
) ||
StartsWith(
"RequestType", 'Search Box'.Text)||
StartsWith(
"Title", 'Search Box'.Text)
), DWBExtractMigrationv1162
)