Hello,
I am encountering an issue with my Power Apps application. I have a Gallery that I'm trying to filter and search simultaneously, but I'm facing challenges with the implementation.
Here is the problem I'm experiencing:
I have a Gallery called BrowseGallery1with the following function:
OnSelec: Filter([@'Gestor PQRs']; StartsWith('NO. DE RADICADO'; TextSearchBox1.Text)).
The cascading filters are already defined in the pop-up.
.... Currently, I'm using the following formula to apply all filtering and searching functionalities:
Set(
FilterA;
BrowseGallery1.Selected
);
Search(
Filter(
[@'Gestor PQRs'];
'ÁREA RESPONSABLE'.Value = ddAreaResponsable.Selected.Value;
ESTADO.Value = ddEstado.Selected.Value;
'TIPO DE SOLICITUD'.Value = ddTipoSolicitud.Selected.Value
);
"ÁREA RESPONSABLE";
"ESTADO";
"TIPO SOLICITUD"
);
Set(
popUpFilter;
false
)
However, I'm not getting the desired results, (The button has an error.). Specifically, I want the user to be able to select filters and then press a button to apply all filters and search criteria simultaneously.
Can anyone please review the provided formula and offer guidance on how to achieve this functionality correctly? Any help would be greatly appreciated.
Thank you!