Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

need help with syntax for a date

Status
Not open for further replies.

atadbitslow

Programmer
Feb 26, 2001
301
0
0
US
Hi,

I have this expression in a query. I can't figure out how to get the date the user will enter to work with the criteria.

DLookUp("res_begin_start","zoom meetings tab","zoom_meeting_date=" & #[Please enter meeting date: mm/dd/yyyy]#)

Thank you!
 
It might help if you provided the entire SQL view of the query and tell us what happens when you try your expression.

You could try:
Code:
DLookUp("res_begin_start","zoom meetings tab","zoom_meeting_date=#" & [Please enter meeting date: mm/dd/yyyy] & "#")

Duane
Minnesota
Hook'D on Access
MS Access MVP 2001-2016
 
It's recommended to mark correct answers by clicking the "[highlight #729FCF]Great post![/highlight]" link.

Duane
Minnesota
Hook'D on Access
MS Access MVP 2001-2016
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top