Hi @AHG ,
Could you please show more details about the formula you specified within the Items property of the TicketsGallery?
Based on the needs that you mentioned, I think a global variable could achieve your needs. You could consider take a try with the following workaround:
Add following formula within the OnSelect property of the Group1 control:
Set(CurrentSelectedOption, ThisItem.TicketTypes)
Add a "Reset" button, set the OnSelect property to following:
Set(CurrentSelectedOption, Blank())
Set the Items property of TicketsGallery to following:
If(
IsBlank(CurrentSelectedOption),
TicketsCollect1, // TicketsCollect1 represents the data source you want to display within the TicketGallery
Filter(TicketsCollect1, ....)
)
Please consider take a try with above solution, check if the issue is solved.
Best regards,