Hello everyone
I have a gallery with SP List database.
I would like to filter these according to several factors.
In terms of status, my SP list contains "open, in progress, done".
The gallery should only show the "open, in progress".
My formula:
Filter(
'Mangelkarten App Data';
StartsWith(
Abteilung;
"XYZ_Abteilung"
);
StartsWith(
Linie;
LabelLinie.Text
);
StartsWith(
Status;
"in Bearbeitung";"offen"
)
)
Where is the mistake???
Hi @Robertjde ,
I assume I have the translation correct here
Filter(
'Mangelkarten App Data';
StartsWith(
Abteilung;
"XYZ_Abteilung"
) &&
StartsWith(
Linie;
LabelLinie.Text
) &&
(
Status = "in Bearbeitung" ||
Status = "offen"
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
WarrenBelz
637
Most Valuable Professional
stampcoin
570
Super User 2025 Season 2
Power Apps 1919
473