Hello I have a spreadsheet column which contains date time values in the following format: 2/1/2015 9:09:34 2/1/2015 9:10:11 2/1/2015 9:12:53
I use a .NET version on VB.NET to retrieve google sheets and perform updates on it. I'm trying to perform a query like this: ' Download worksheet in ListFeed format Dim listFeedLink As AtomLink = worksheetentry.Links.FindService(GDataSpreadsheetsNameTable.ListRel, Nothing) Dim list_query As ListQuery = New ListQuery(listFeedLink.HRef.ToString()) list_query.SpreadsheetQuery = "activitydate>2015-02-01" Dim list_feed As ListFeed = myService.Query(list_query) The above query works fine but it only contains date. When I try to add Time to it, gives me a HTTP 400 Bad Request failure. list_query.SpreadsheetQuery = "activitydate>2015-02-01-09:10:00" How do I add Time to my query above? Thanks in advance. F.Azhar -- You received this message because you are subscribed to the Google Groups "Google Spreadsheets API" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
