Helly everyone,
I am working on a gallery that I want to have 4 methods of filtering.
First way is through typing the name of the person which is connected to my people column on SharePoint. Second way will be through a choice column filter based on the status of the file. Third and fourth methods will be through text columns (based on the file number and address)
My choice column is called Status and is connected to a combo box called "StatusBox"
My text column for file number is called Filenumber and is connected to a text input called "Fileno"
My text column for the address is called AddressCol and is connected to a text input called "Addfile" XXX
My people column is called Responsible and is connected to a text input called "Assignedto" XXX
So far I came up with the following which makes the filtering work only for file number column (text column) and status column (choice column). However, I am not sure how to include the other text and people column into this code.
Items:
Search(
Filter('Files List', IsBlank(StatusBox.SelectedItems) || IsEmpty(StatusBox.SelectedItems) || StatusBox.Selected.Value in Status.Value),
Fileno.Text,
"Filenumber"
)
Your help would be greatly appericiated