Hi,
I have a query that is extracting information from an Access DB and displaying it in a table on a webpage
This works as expected and I am given an officers name plus a total of how many calls they have closed (in Desc order). What I would like to do is only show records after the 1/1/2007.. Can someone please advise how I would go about incorporating this into the existing query?
Thanks
I have a query that is extracting information from an Access DB and displaying it in a table on a webpage
Code:
set rs = Server.CreateObject("ADODB.recordset")
rs.Open "select [TSK Assigned To Individual], sum(iif([TSK Assigned To Group] ='GMS-Admin', 1, 0)) as GMSAdmin from TSK group by [TSK Assigned To Individual] ORDER BY Sum(IIf([TSK Assigned To Group]='GMS-Admin',1,0)) DESC", conn
This works as expected and I am given an officers name plus a total of how many calls they have closed (in Desc order). What I would like to do is only show records after the 1/1/2007.. Can someone please advise how I would go about incorporating this into the existing query?
Thanks