I want to create an Export in Taleo Connect Client to find candidates that are missing either an Address, City, or ZipCode. However, I don't know how to create a filter with multiple conditions.
For example: The filters below will find candidates where Address, City, and ZipCode are empty.
<quer:filtering>
<quer:isNull>
<quer:field path="Address"/>
</quer:isNull>
</quer:filtering>
<quer:filtering>
<quer:isNull>
<quer:field path="City"/>
</quer:isNull>
</quer:filtering>
<quer:filtering>
<quer:isNull>
<quer:field path="ZipCode"/>
</quer:isNull>
</quer:filtering>
How would I filter candidates where Address, City, OR ZipCode are empty?
You can nest multiple
<quer:or>statements to combine pairs of two conditions.Complex filter if Address, City, or ZipCode are null:
Full Export:
Thanks to ThinkTalent Tech Blog for demonstrating how to use
<quer:or>.