I am running a query, but in part of the query, I only want to check for every Tuesday, and display what the date would be for that Tuesday. Can anyone please help. Thanks
Not sure exactly what you are trying to do but you probably want to use the Weekday function. Eg, to only display a date if its a Tuesday:
=iif(Weekday(MyDate)=3, MyDate)
Note, sunday = 1, monday = 2 etc. You can change the default by indicating the required first day of the week in the function call (see the help page in Access). Best Regards,
Mike
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.