Hi Team.
I built an application in power apps and I have these function delegation problems, but I have tried to solve them with some other formulas and it does not work:
Label4= CountIf(Recibo, Title = "Recibido")
in this button I only want to do a record count when the condition is "Recibido"
TextSearchBox1=
SortByColumns(
Filter(
Recibo,
Title = "Recibido",
StartsWith(Destinatario,TextSearchBox1.Text) || StartsWith(Paqueteria,TextSearchBox1.Text) || StartsWith(Proveedor,TextSearchBox1.Text) || StartsWith(Text(PO),TextSearchBox1.Text)
),
"Title",
If(
SortDescending1,
Ascending,
Descending
)
)
with this text box I only want to filter the content according to the value that I write according to the columns of the RECIPIENT, PO .....
Any idea?