How to fetch 3 months older mail in uipath?

How to fetch 3 months older mail in uipath?

@Chandni

I hope this will help you to filter the mails
“[ReceivedTime] > '” & Format(“05/28/19 12:00am”, “ddddd h:nn AMPM”) & “'”

1 Like

@Chandni, you should be able to use formulas to calculate the current day less 90 days to replace the hardcoded date in this formula to get your desired result. See below for an example:

now.AddDays(-90).ToString(“ddddd h:nn AMPM”)