Rather than having this I would like to state something like : selection> cellvalue column="Field" summary="No summary available"> object value!=null /> /cellvalue> /selection> but I am getting an error saying that value needs to have "=" sign and it can't have "!=".
For now I need to build a new query whenever new value comes in, otherwise it doesn't work as it is selecting values which were selected in xml previously.
Select a null cell and click Move. Create a query and export it. It should look something logically like NOT ( NULL ).
Generally, the XML format for queries is not public and transparent; you should use the UI to build them, then tailor existing XML structures rather than trying to hand-roll them yourself.
This is what I did. And instead of having "something logically like NOT ( NULL )" , I got a list of values from "omni-rolled" xml structure. That's why I wanted to "hand-roll" my xml, because when new values coming in I need to add them manually to my query.
Bart, my instructions weren't quite right due to some aspects of the XML query format which confuse things. Try this: <notselection> <nullsel column="Field 1" /> </notselection>
You can substitute nullsel for cellvalue, if needed.