Hi @Anonymous ,
Based on the formula you provided, I think there is something wrong with it. The Default property of the Gallery control is required to provide a record value, but the Filter formula you provided returns a Table value.
As an alternative solution, please consider take a try with the following workaround:
Set the OnVisible property of the Make screen to following:
ClearCollect(
InitialCollection,
Filter(Tickets, isFolder = true, "\Business Tracks\Make" in AccountName)
)
Set the Items property of the Gallery to following:
If(
!IsEmpty(InitialCollection),
InitialCollection,
Filter(Tickets, Status = Dropdown1.Selected.Result)
)
Set the OnSelect property and OnChange property of the Dropdown1 to following:
Clear(InitialCollection)
Please consider take a try with above solution, then navigate to another screen, and then navigate back to the Make screen (fire the OnVisible property of the Make screen), check if the issue is solved.
Best regards,