mans
To get all dates that fall on a Thursday, put the following criteria in your date column...
Weekday([YourDateField])=4
By the way, it is better not to use Date and Name as the names for field in a table. They are reserved words in Access. Rename your Date field in table1 to something such as MyDate or whatever you like.
For example, Date() is used to derive the current date. So if your field is named Date this just runs into all kinds of trouble.
Tom