Hi guys!
I need help with the problem below:
I had a delegation issue that I've solved partially using the follow formula below with Collection and Filter:
ClearCollect(colInboundListSharepoint, Filter(InboundListSharepoint, ID_Foreign >=1 && ID_Foreign <= 2000), Filter(InboundListSharepoint, ID_Foreign >2000 && ID_Foreign <= 4000))
Up to the formula above, everything works fine.
=========================================================================
My problem is:
I need to get records from Sharepoint list records over 4000, but when I try to add to ID_Foreign Column (number) from 4000 to 6000, the gallery doesn't count this aditional records.
ClearCollect(colInboundListSharepoint, Filter(InboundListSharepoint, ID_Foreign >=1 && ID_Foreign <= 2000), Collect(colInboundListSharepoint, Filter(InboundListSharepoint, ID_Foreign >2000 && ID_Foreign <= 4000); Collect(colInboundListSharepoint, Filter(InboundListSharepoint, ID_Foreign > 4000 && ID_Foreign <= 6000))
============================================================================
My Gallery formula is:
(see number 2 in picture attached)
With(
{
wFilter: Sort(
Filter(
colInboundList,
Status_Fluxo = "1-Recebimento" || Status_Fluxo = "5-ConcluÃdo" || Status_Fluxo = "6-Retorno Tubing" || Status_Fluxo = "0-PCR" || Status_Fluxo = "2-Inspeção" || Status_Fluxo = "4-Armazenagem" || Status_Fluxo = "7-Retorno Correção" || Status_Fluxo = "3-MES"
),
Fim_Processo_Armazenagem_,
SortOrder.Descending
)
},
Search(
wFilter,
SearchTextInput_RelGeral.Text,
"PO_Item0",
"PartNumber",
"Status_Fluxo",
"QN_QualityNotification",
"Processo",
"Operador_PCR",
"Operador_Recebimento",
"Operador_Inspecao",
"Operador_Armazenagem",
"ZPP3_Order",
"Status_FIFO_Inspecao"
)
)
// the information in my gallery formula above is my Sharepoint List Column, but doesn't have the column "ID_Foreign" cause this type of column is number type and all others is text type , but the formula above doesn't have issue. It works. The name "SearchTextInput_RelGeral.Text" (see number 1 in picture attached) in my gallery formula above is related to the name of my Search filter (Text Input). This Search Text Input was working when I was searching information in it until ID_Foreing in my collection until 4000 records, but above it, from 4000 to 6000 records neither gallery gets more information neither Search Filter "SearchTextInput_RelGeral.Text" can found more records in my gallery.
My Sharepoint list has columns typ text, number, date time, Single Line Text and Multiple Lines Text.
@LaurensM @WarrenBelz