SortByColumns('Proof of delivery',"Created",Descending)
Or even this one to display only 10 items.
FirstN(SortByColumns('Proof of delivery',"Created",Descending),10)
SortByColumns(
Filter(
'OTR 2025 List',SWAPStatus <> "SWAP Complete" && SWAPStatus <> "Cancelled"),
"TrID",Sort.OrderDescending //there is a dot after Sort
)
SortByColumns(
Filter(
'OTR 2025 List',SWAPStatus.Value <> "SWAP Complete" && SWAPStatus.Value <> "Cancelled"),
"TrID",Sort.OrderDescending
)
SortByColumns(Filter('OTR 2025 List',SWAPStatus <> "SWAP Complete" && SWAPStatus <> "Cancelled"), "TrID",SortOrderDescending)
But it does neither of both.
Enjoy Power Platform and have a great day 🚀 | My LinkedIn
If the answer helps, please consider 👍, Thanks.