Re:query to pull up all jobs due on WEd. for example

Tech-Archive recommends: Fix windows errors by optimizing your registry



It seems to me you should be using a 3 letter identification for day of the
week to distinguish between Tuesday, Thursday, Saturday and Sunday.

Here is my solution:
Three lettered day:
Criteria [field] = CStr(Format(Date(),"ddd"))
1 Lettered day
Left(CStr(Format(Date(),"ddd")),1)

Either one will work for criteria on an Access Database, if you are using
SQL server, then you need to do something completely different.
.