I am first getting started with Power Apps, and have a question 🙂
If I have several toogle buttons, to show different states of support tickets, how do I show the status for the toogle buttons that are true.
I have this code for one single toggle button, but can't figure out how to do if I want to display the result for two toogle buttons that are true.
If(
Hold.Value=true;Filter('support'; "Hold" in Status.Value);
Started.Value=true;Filter('support'; "Started" in Status.Value);
Closed.Value=true;Filter('support'; "Closed" in Status.Value)
)
Thank you!!