I am trying to creat a simple (I hope) query that will bring me the number of days between two dates and filter out weekend days. So if it was between Friday and Monday the count would be two.
here is the SQL as I have it now....
SELECT Neighborhood, Lot, Block, [Crit Dim Requested], [Actual Crit Dim], ([Actual Crit Dim]-[Crit Dim Requested]) AS [Diff Req/Actual]
FROM [Cabinet Installation Tracking Table]
WHERE ((([Crit Dim Requested])>=[Enter a Start date]));
Any help would be greatly appreciated!
here is the SQL as I have it now....
SELECT Neighborhood, Lot, Block, [Crit Dim Requested], [Actual Crit Dim], ([Actual Crit Dim]-[Crit Dim Requested]) AS [Diff Req/Actual]
FROM [Cabinet Installation Tracking Table]
WHERE ((([Crit Dim Requested])>=[Enter a Start date]));
Any help would be greatly appreciated!