Hai,
Right now, I am building an app to display a list of my emails in a gallery and filter them by a date picker. below is my current code, but by default, it only shows the top 10 emails, so emails before November 6th can't be displayed. Can anyone help me with this issue? Thank you.
Code:
If(IsBlank(DatePicker1),Office365Outlook.GetEmails({fetchOnlyUnread:false,searchQuery:ComboBox1.Selected.Email}),Filter(Office365Outlook.GetEmails({fetchOnlyUnread:false,searchQuery:ComboBox1.Selected.Email}),DateTimeReceived >= DatePicker1,DateTimeReceived <= DatePicker1_1))
Capture:
