I am using the Help Desk App, currently I have the following screen

I have the following logic that shows the tickets above under the My Ticket Screen
Refresh(HelpDesk);
ClearCollect(AllTickets,HelpDesk);
If(isAdmin ,
Set(TicketToRunFlow,First(Sort(AllTickets,Created,Descending))),
Set(TicketToRunFlow,First(Sort(Filter(AllTickets,Author.Email = MyProfile.Mail || Author.Claims = MyProfile.UserPrincipalName ),Created,Descending)))
);
If(RunFlow, HelpDeskFlow.Run("'" & TicketToRunFlow.ID & "'"));
If(RunFlow, Set(RunFlow,false))
I also have this logic under the My Ticket Screen Gallery Icon Screen
If(
isAdmin,
Sort(
AllTickets,
Created,
Descending
),
Sort(
Filter(
AllTickets,
Author.Email = MyProfile.Mail || Author.Claims = MyProfile.UserPrincipalName
),
Created,
Descending
)
)
I am looking to show only the items when my TaskStatus shows everything but the Completed Items
Anyone have any ideas on how to do that
Thanks