Hi,
I have a query, which gives me the weekday number for each day of the year, excluding weekends ...Monday to friday, using
SELECT [Table3].[TheDate], [Table3].[Message], DatePart("w",[TheDate]) AS Expr1
FROM Table3
WHERE (((DatePart("w",[TheDate])) Between 2 And 6));
Is there any way of...