ClearCollect(
GroupedCollection,
AddColumns(
GroupBy(
MyCollection, // your collection name.
Date,
Person,
GroupedRecords
),
RecordCount,
CountRows(GroupedRecords),
created,
Last(
SortByColumns(
GroupedRecords,
"created",
SortOrder.Ascending
)
).created
)
);
ClearCollect(
FinalCollection,
ForAll(
GroupedCollection,
If(
Mod(
RecordCount,
2
) = 1, // checking is odd count.
ThisRecord
)
)
);
André Arnaud de Cal... 291,419 Super User 2024 Season 2
Martin Dráb 230,492 Most Valuable Professional
nmaenpaa 101,156