I am trying to create a succinct (I have limited character space) search that looks for documents with a specific value as well as blank.
In my examples, I'm looking for documents that fit certain criteria that either have a specific deposit account number as well as those that may have a blank deposit account number.
This works:
{[Corporate Member]:[Organization Number]="9157", [Organization Document Group]="Corp Signing Authorizations", [Document Status]="Active"}&({[Corporate Member]:[Deposit Account Number - Signers]=""}|{[Corporate Member]:[Deposit Account Number - Signers]="123456"})
This does not:
{[Corporate Member]:[Organization Number]="9157", [Deposit Account Number - Signers]in("","123456"), [Organization Document Group]="Corp Signing Authorizations", [Document Status]="Active"}
It looks like I can use [Field Name]in("","123456") to return both empty and specific values. Is this a bug? Is it intentional? It would be nice it if worked. If it isn't as logical as I think it is, please explain why.
Thanks for your help.