@RandyHayes : Thank you for your inputs, but sadly unable to open the .msapp in machine - would you mind sharing me the export of it - .zip version?
I tried to filter as below, but failing to get one record for each individuals based on latest modified date, not sure how to get it; As I have data in excel, I need to use the DateTimeValue function.
Filter(ParticipantsCollection, IsToday(DateTimeValue(CreatedDate)) = true && First(SortByColumns(ParticipantsCollection, "ModifiedDate")).EmailAddress in Distinct(ParticipantsCollection, EmailAddress))
This gives me only the first record.
First(SortByColumns(Filter(ParticipantsCollection, IsToday(DateTimeValue(CreatedDate)) = true),"ModifiedDate",Descending))
I think I need be using ForAll or something else..