Hello,
I am trying to exclude 4 facilities in a filter and it seems anything more than one would generate the following error:
Unable to parse expression: (callingAETitle<>'XXX1' and callingAETitle<>‘XXX2’) Filter is not valid.
Does anyone know why it cannot be parsed?
Best,
Filters
Re: Filters
Hi,
It looks like you're using a left/right single quote in the second comparison rather than just a plain single quote (apostrophe). If you change that it should work fine:
Best,
Justin
It looks like you're using a left/right single quote in the second comparison rather than just a plain single quote (apostrophe). If you change that it should work fine:
Code: Select all
(callingAETitle<>'XXX1' and callingAETitle<>'XXX2')
Justin
Re: Filters
Well now I feel dumb! I looked at it a thousand times and could not see it.
Thank you very much, Justin.
Best,
KG
Thank you very much, Justin.
Best,
KG