I came upon an error when running a couple queries. I get cant use "qryname" as a row source? I believe it has something to do with null values in my tables. Is there a way to check to see if null value. I also get the set 1 field to null data type converison error. This might help too, In my critiera it pulls all the data from our fiscal year calander. The only thing is it takes a few days for the person to enter the data in, so we just started a new period on june 29th and the last data was entered in on june 26th. so some how i have to check to make sure data was entered after the start of the period.
query sql example:
SELECT Count(*) AS NumRetailTisPackCon
FROM qry_PTD, tbl_Tissue INNER JOIN tbl_TisPack ON tbl_Tissue.ID = tbl_TisPack.ID
WHERE (((tbl_Tissue.Date1)>=[qry_PTD]![start_date] And (tbl_Tissue.Date1)<=[qry_PTD]![end_date]));
query sql example:
SELECT Count(*) AS NumRetailTisPackCon
FROM qry_PTD, tbl_Tissue INNER JOIN tbl_TisPack ON tbl_Tissue.ID = tbl_TisPack.ID
WHERE (((tbl_Tissue.Date1)>=[qry_PTD]![start_date] And (tbl_Tissue.Date1)<=[qry_PTD]![end_date]));