I have this in php, and it seems to work to query for rows that have a
date less than my date :

Using a worksheet list feed

  $query = new Zend_Gdata_Spreadsheets_ListQuery();
    $query->setSpreadsheetKey($ssKey);
    $query->setWorksheetId($wkshtId);

        $query->setSpreadsheetQuery('nextreviewdt<01/17/2009');

    $listFeed = $gdClient->getListFeed($query);


BUT, I cant figure out how to get a greater than date to work, or to
make sure I only get results for rows that HAVE a date.

Simply changing the "<" to ">" does not work.

To filter blank rows, I have tried:   <>""       >0
>01/01/2009    is not null     is not ""
 none work, I still get an entry count of 1!!   (or an error)




--

You received this message because you are subscribed to the Google Groups 
"Google Docs Data APIs" group.
To post to this group, send email to google-docs-data-a...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-docs-data-apis?hl=.


Reply via email to