I am having a very difficult time trying to figure out how to write out a select statement in a query. I was told previously to use DATEADD to add days to a check box. I would like to add, say, 365 days to a check box and have it show the next test date. I really don't have any idea how to write it out. I am putting the following into a query in the field name: SELECT [AcctNo], [SerialNo], DATEADD(day,365,LastTestDate) as NextTestDate from TestHistorytbl. I keep getting an error message saying: You have written a subquery that can return more than one field without using the EXISTS reserved word in the main query's FROM clause. Revise the SELECT statement of the subquery to request only one field. I don't know what all this means and I need help. Any help is appreciated.