Hello!
I have an application with a ticket system. My gallery looks like this:
https://gyazo.com/149a2c76b0acf3419bc28ce3d939ad61
This is the code of my gallery:
SortByColumns(
Search(
If(
gblIsAdmin;
MancoTabel;
Filter(
MancoTabel;
Verzender = User().FullName && If(
selectedStatus <> "All";
IsBlank(selectedStatus) || Status = selectedStatus
)
)
);
TekstZoekVeld.Text;
"Ordernummer";
"Verzender";
"Deelorder";
"Extern";
"Product";
"Intern";
"Deelorder";
"Tekeningnummer";
"Omschrijving";
"Status"
);
"Datum";
If(
SortDescending1;
Ascending;
Descending
)
)
Currently this is my code of my BrowseGallery of my tickets. I am currently able to filter on 4 different statusses.
-All
-Open
-Verwerkt in Ridder
-In behandeling
All of these statusses work except for the status "All". Could you guys maybe take a look at my code and explain me why the "All" status is not working?
If I need to explain my code, just let me know and I will explain it.