Y
Y Beckers via AccessMonster.com
I have this Query,
SELECT DateDiff('w',[dat1],[dat2]) AS Expr1, *
FROM Dat
WHERE DateDiff('w',[dat1],[dat2]);
Now i want to count only the weekdays, so exclude the weekenddays. How do I do this. Please give a clear answer, cause i'm new on Access
SELECT DateDiff('w',[dat1],[dat2]) AS Expr1, *
FROM Dat
WHERE DateDiff('w',[dat1],[dat2]);
Now i want to count only the weekdays, so exclude the weekenddays. How do I do this. Please give a clear answer, cause i'm new on Access