I have generated an application in power apps starting from a sharepoint list with multiple columns, in the initial grid of the application I have the following code, where the values of my columns are shown based on the selected:
SortByColumns(
Filter(
[@ListaSoporte];
StartsWith(
Empresa;
TextSearchBox1.Text
)
);
"ID";
If(
SortDescending1;
SortOrder.Descending;
SortOrder.Ascending
)
)
The problem comes when I want to add another parameter to this filter so that it only shows the results whose value in a Choice column is equal to (Process).
Im triying with this code:
SortByColumns(
Filter(
Filter(
[@ListaSoporte];
StartsWith(
Empresa;
TextSearchBox1.Text
)
);
Estado.Value="Proceso"
);
"ID";
If(
SortDescending1;
SortOrder.Descending;
SortOrder.Ascending
)
)
And it does not show errors but it does not return data, I would like to make this code as simple as possible.
Any help or suggestions on how I can do with the code?