Hi jayland,
I might have a solution for your problem (but not for mine
). If you know a value that your records cannot have, you can search for all entries where the value is not equal to that given value and you will get all entries with not null values. Hmm, hard to explain.
Let me give you an example. Let's say your table has a field called 'modification_date', which tracks when an entry has been changed and you are sure none of the entries will have '1990-02-27' as modification date. A search for would give you all entries that are not null.
Hope this works for you (I didn't test it).
Jasper
http://www.bookings.org
I might have a solution for your problem (but not for mine


Let me give you an example. Let's say your table has a field called 'modification_date', which tracks when an entry has been changed and you are sure none of the entries will have '1990-02-27' as modification date. A search for
Code:
...&modification_date=!1990-02-27&...Hope this works for you (I didn't test it).
Jasper
http://www.bookings.org