i don't get it jo.
datefound and dateresolved are both fields on forms, right?
and the datediff function needs to calculate the diff from those two, right?
OK, so there's your timeframe of ONE day, but what field are you trying to apply that "one day from today" concept on? there can only be ONE field, otherwise it wouldn't make any sense!
this:
Code:
SELECT [tbl1].[Date found on Recon], [tblSISImport].[Resolved_Date]
[/code]looks unrelated to everything else, and this:
Code:
WHERE abs(datediff("d",DateFound,Date_Time_Resolved))<1;
is irrelevant, because there are no table fields to be found anywhere in that criteria statement...are there?
furthermore, field refs on forms need this syntax:
Code:
forms!formname!DateFound
etc...