Hello,
i need the collection order by column "CupNumber" but i have a problem with values higher than 10...
This is my formula
ClearCollect(colSamplesForExport1,SortByColumns(Filter(FTIR_samples,Run=Value(varRun),Valid=true),"CupNumber",SortOrder.Ascending))
Thank you very much
BR
Jakub
If FTIR_samples contains more than 2000 rows, this could be a problem. In that case, you might want to populate an initial collection without the sort, and to then sort on the initial collection.
Yes this works 🙂
Delegation warning i received but my collection can contain max 100 records so there is no problem right?
Thanks you!
Hi @Flashback
Can you try this instead?
ClearCollect(colSamplesForExport1,
Sort(Filter(FTIR_samples,Run=Value(varRun),Valid=true),
Value(Last(Split(CupNumber, "_")).Value),
SortOrder.Ascending
)
)
Hi @Flashback
Something like this should work better for you.
ClearCollect(colSamplesForExport1,
Sort(Filter(FTIR_samples,Run=Value(varRun),Valid=true),
Value(Last(Split(CupNumber, "_"))),
SortOrder.Ascending
)
)
WarrenBelz
770
Most Valuable Professional
stampcoin
494
MS.Ragavendar
399