Open report

  • Thread starter turks67 via AccessMonster.com
  • Start date
T

turks67 via AccessMonster.com

I'm trying to open a report from Two combo boxes with this code behind the
second combo box afterupdate
strcriteria = "[nameID]=" & Me!Text2 & "[dd]=" & Chr(34) & Me!Text11 &
Chr(34).

I get this syntax error."syntax error (missing operator) in query expression
'([nameID]=799[DD]="April 09"). What I'm I doing wrong?

Floyd
 
D

Douglas J. Steele

strcriteria = "[nameID]=" & Me!Text2 & " AND [dd]=" & Chr(34) & Me!Text11 &
Chr(34).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top