Hi all,
I'm building an app what contains a gallery which displays information from a SharePoint list.
The list is named "Competenties".
This list has a couple of columns. In this case the columns "Status" and "Categorie". They're both columns
of type choice. The difference between them is that Status does not allow multiple selections where Categorie allows multiple selections.
I'm displaying the categories in a seperate gallery inside main gallery.
The problem is in the filter that I'm building.
It has a textinput field where the user can search through the title of the records and two sets of radio buttons.
One for the Status and the other for the categorie.
I've managed to get the filter working properly for the textinput and the status, however when I try to extend the lines of codes with a similair line as the status radio buttons, my filter wont work.
Does anybody has an idea how I can get this filter to work so that I can filter Status and Categorie?
The code that works:
Filter(
Competenties,
StartsWith(
Title,
TextTitelComp.Text
) && (Status.Value = RadioStatus.Selected.Value || RadioStatus.Selected.Value = Blank())
)
This is the situation:

Report
All responses (
Answers (