Hi @WendeReisss ,
You can actually put it either top or bottom - top example
With(
{
wFilter:
Sort(
Filter(
InboundList,
Status_Fluxo = "1-Recebimento" ||
Status_Fluxo = "6-Retorno Tubing" ||
Status_Fluxo = "7-Retorno Correção"
),
FIFO,
SortOrder.YourChoice
)
},
Search(
wFilter,
SearchTextInput.Text,
"PO_Item",
"PartNumber",
"Status_Fluxo"
)
)
or lower
With(
{
wFilter:
Filter(
InboundList,
Status_Fluxo = "1-Recebimento" ||
Status_Fluxo = "6-Retorno Tubing" ||
Status_Fluxo = "7-Retorno Correção"
)
},
Search(
Sort(
wFilter,
FIFO,
SortOrder.YourChoice
),
SearchTextInput.Text,
"PO_Item",
"PartNumber",
"Status_Fluxo"
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
MVP (Business Applications) Visit my blog Practical Power Apps