I'm using SharePoint lists. I've got a list of tickets, cleverly named TicketList that includes columns that represent their:
- Status (Named TaskStatus (lookup column))
- Task owner (Named AssignedTO (person field))

The TaskStatus column is the look-up that references another List named StatusList. StatusList includes the following columns:
- Title (Text and includes Assigned, Not Started, Waiting for response, Closed, Cancelled)
- Active Yes/No (Everything is Yes now)
- Open Yes/No. All are set to Yes except for the Closed and Cancelled values.

My screen has a dropdown with the options of Open or Closed.
I want to filter items from TicketList based on who is logged in against the AssignedTO value AND the Open (Y/N) value from TaskStatus.
The following filter works against the AssignedTo column (If(OpenCloseDropdown.SelectedText.Value="Open",Filter(TicketList,User().FullName=AssignedTO.Value))),
but I can't figure out how to link back to the TaskStatus Open column for the remainder of the filter.
The dropdown is named OpenCloseDropdown.
The following filter also works but does not accomplish everything I want:
If(OpenCloseDropdown.SelectedText.Value="Open",Filter(TicketList,User().FullName=AssignedTO.Value And TaskStatus.Value = "Assigned"))
Thank you in advance for any suggestions.