Filter Emails of Get email list of Microsoft 365

I want to filter the emails based on received time like emails received between 29/04/2026 09:00:00 and 29/04/2026 21:00:00. How can I do that inUpath windows version

Hi @AqibDar,

It depends on which activity/package you are using (usually Microsoft Outlook, Gmail, or IMAP).

For Outlook you can refer this document:

Thanks!

Hi @AqibDar

You can use the following code in your workflow - Use the Get email list activity and then in the “Filter” property add this:

"[ReceivedTime] >= 'MM/dd/yyyy HH:mm' AND [ReceivedTime] <= 'MM/dd/yyyy HH:mm'"

That should help you :slight_smile:

Hi @AqibDar

Could you try this filter:

"[ReceivedTime] >= '04/29/2026 09:00AM' AND [ReceivedTime] <= '04/29/2026 09:00PM'"

Regards
Soren

@AqibDar

You have a filter builder option in get email list…if you click you need to select the field and give the input as you need

no speccific syntax is needed unless you are on an older version

cheers

Hi @SorenB ,

I tried the given solution. But when I execute the program its giving zero emails.

Hi @AqibDar,

Click on + icon and selector conditional builder then you can apply the filter. Check the below snapshot:

image

Thanks

Filter builder option helped.