Convert time stamp to date in query select statment in google spreadsheet -


i importing data form data collection sheet , change timestamp date make easier me filter.

what want able filter data based on dates provide example filter data between 4/20/2013 , 5/1/2013. time stamp in datetime format making difficult so.

is there way can query(a:d,"select date(a), b, c",1) table has date not datetime or

if set a1 = 4/20/2013, b1 = 5/1/2013, c1 = query(sheet1!a:d,"select a, b, c, d >= date'"""&a1&"""' , <= date'"""&b1&"""'",1)

please me getting point

thank you

khokhar

have @ todate() here.

=query(sheet1!a:d,"select a, b, c, d todate(a) >= date'" &a1& "' , todate(a) <= date'" &b1& "'",1) 

Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -