Outlook Filter not working

Hello Creator’s

I have issue with outlook filter. in my case i want to read the email after a particular time.
For Ex: Want to read email after Req_Email_Date=“10/01/2019 11:09:37” date and time. If i used
“[ReceivedTime]>'” +Req_Email_Date.ToString(“dd-MM-yyyy HH:mm”)+“'”

Its reading Emails which received on the same date & time (10/01/2019 11:09:37) received emails.

Is there any way to add 2 or 3 more mins on the time ?

i have tried to capture the Date’s
item.Headers(“Date”)
item.Headers(“DateCreated”)
item.Headers(“DateReceived”)

Any Solution?

Regards,
Srenivasan Kannan

Solution:-

StrDate=Approver1_Email_Date.AddMinutes(2)

“[ReceivedTime]>’” +StrDate.ToString(“dd-MM-yyyy HH:mm”)+“’”

Note:-
Var:-
Req_Email_Date - DateTime
StrDate - DateTime

Regards,
Srenivasan Kannan