Hi all , I am getting this error as i am trying to run my process .
I have this filter expression
“[Subject] LIKE ‘%Success %’ AND [ReceivedTime] >=’”+Now.AddDays(-2).Date.ToShortDateString+“’ AND [ReceivedTime] <= ‘”+Now.Date.ToShortDateString+“’”
Or is there other way that i can filter emails base on a specific keyword in subject and by the received today and D-1 .
I tried a lot of expression but it not working , please help thank you
In many case, it’s caused by double quote except 0x22 " character. For now, can you try to replace (retype) all the double quote with " character. (Please copy and paste if necessary)
I tried change the double quotation , the new expression look like this :
“[Subject] LIKE ‘Success %’ AND [ReceivedTime] >=’”+Now.AddDays(-2).Date.ToShortDateString+“’ AND [ReceivedTime] <= ‘”+Now.Date.ToShortDateString+“’”
But i got this error :Get Outlook Mail Messages: Condition is not valid.