I've got the following ASP code I'm using to try and select a date range from a form but I'm getting do data returned with my syntax. set rsCustSurvey = conn.Execute ("Select Incident_ID, ProblemDescriptionTrunc, Action_Summary, RootCause, Problem_Solution002, " _& " AssignedTechnician, DATEADD(s, dbo.TTS_Main.DateClosed, '1/1/1970') AS DateClosed, DATEADD(s, dbo.TTS_Main.Date_Opened, '1/1/1970') AS DateOpened From tts_main Where ProblemDescriptionTrunc LIKE '%" & prob & "%' And Last_Name LIKE '%" & l_name & "%' " _& " AND AssignedTechnician LIKE '%" & assigned_tech & "%' AND Date_Opened BETWEEN "& date_later_than &" AND "& date_earlier_than &" " _& " Order By DateClosed DESC ")
Am I missing something obvious here?Thanks!Dale