I’m trying to filter outlook email by Subject that starts with IPO example ‘IPO1234’ since there is single quote present in subject already, I’m quite not sure how to make this work.
I tried with
[Subject]= ‘IPO1234’”
Also tried to use variable:
“[Subject]= ”+strVar+“”
With same value inside. But didn’t work.
The first 3 letter of subject remain same i.e., IPO , so is it possible to filter email that stars with specific letters?
Please note that subject already contains ‘ ‘ (single quotation) marks in the prefix and suffix
You mentioned that the search term has quotes ‘IPO418586’
The filterexpression needs to surround the searchterm with quotes
When quotes are part of searchterm then we escape it with an aditional quote
thats why following was mentioned above
did you already tried it?
Keep in mind also that % will wildcarding it