0

I am getting this error message in a UIPath statement:

Get Outlook Mail Messages: Cannot parse condition. Error at "@SQL=(("http://schemas.microsoft.com/map...".

This is my code:

"@SQL=""http://schemas.microsoft.com/mapi/proptag/0x0037001f"" like '%asean prs%' AND [Received] >= '" + DateTime.Today.ToString("d") + " 00:00AM'"

How can I fix this?

Joel Coehoorn
  • 399,467
  • 113
  • 570
  • 794
alvin
  • 1

1 Answers1

0

I dont think a string can be "bigger than or equal to" (>=) another string. It can either be equal (=) or not equal (<>). The length of the string can be greater, but not the string itself.

Also, there might be something wrong with your use of apostrophies, single and double quote marks.

Schpenn
  • 108
  • 1
  • 11