Hello,
I'm currently trying to filter a gallery (from sharepoint list) where users will be able to display what they need, then select the record to open and review.
I have a textbox to filter by business, which is working fine with the following code.
Search('ESCALATION TRACKING',Txtnamefilter.Text,"Business")
The complete gallery is displayed, and user is able to search by business text.
When i'm adding code to have the checkbox filter, the gallery contents disapear, and when check the checkbox, the record with the selected status is displayed.
Filter(Search('ESCALATION TRACKING',Txtnamefilter.Text,"Business"),NotStartedCheckbox.Value,Status.Value="Not Started")
NOTE : I only start with the checkbox "Not Started" for trials, then i will add the 3 others.
here what is displayed with the complete code

and when checking the checkbox

I'm for sure missing something, but not able to see what.
Thanks a lot for the help here.