I am trying to run a parameter qry that pulls all values under the specified range. My problem is that table 'VPS Sales Validated' is in long date format. I have tried reformatting that table using =Format([time],"Short Date") but that isn't working because I only get returns where the value didn't already include the hours and minutes. So Can someone tell me what I need to do in either the qry below or how to reformat the date in main table?
SELECT Sum([VPS Sales Validated].[Master VPS Table_Amount]) AS [SumOfMaster VPS Table_Amount], Sum([VPS Sales Validated].Time) AS SumOfTime
FROM [VPS Sales Validated]
WHERE ((([VPS Sales Validated].[Batch ID])<>0))
HAVING (((Sum([VPS Sales Validated].Time)) Between [Enter Start Date:] And [Enter End Date:]));
SELECT Sum([VPS Sales Validated].[Master VPS Table_Amount]) AS [SumOfMaster VPS Table_Amount], Sum([VPS Sales Validated].Time) AS SumOfTime
FROM [VPS Sales Validated]
WHERE ((([VPS Sales Validated].[Batch ID])<>0))
HAVING (((Sum([VPS Sales Validated].Time)) Between [Enter Start Date:] And [Enter End Date:]));