Microsoft
Software
Hardware
Network
Question : Open form based on two unbound combo boxes on another form
I have a form named frmWorkAndBack based on a table tblWorkAndBack.
The table has two Integer fields QuoteNumber and QuoteLine.
I have a button a form frmSelectOrder with two unbound fields cboQuoteNumber and cboLineNumber.
I want to open the form frmWorkAndBack based on the values in in frmSelectOrder
If I use the command
DoCmd.OpenForm "frmWorkAndBack", , , "[QuoteHeader]=" & Me.cboQuoteNumber
the form opens and is filtered by the QuoteHeader value.
If I use this code:
DoCmd.OpenForm "frmWorkAndBack", , , "[QuoteLine]=" & Me.cboLineNumber
the form opens and is filtered by the QuoteLine
However, when I use this code:
DoCmd.OpenForm "frmWorkAndBack", , , "[QuoteHeader]=" & Me.cboQuoteNumber And "[QuoteLine]=" & Me.cboLineNumber
I receive Run-time error '13'"
Type mismatch
I would think I would get a Type mismatch on one or the other, but they both work when not combined.
Thanks in advance.
Answer : Open form based on two unbound combo boxes on another form
You simply misplaced the quote:
DoCmd.OpenForm "frmWorkAndBack", , , "[QuoteHeader]=" & Me.cboQuoteNumber & " And [QuoteLine]=" & Me.cboLineNumber
The And was being interpreted by VB, while you want it as part of your criteria.
(°v°)
Random Solutions
MS Office 2010
Complete uninstall of Sharepoint Services 3.0 from Windows 2008 Server
How to change the from field on auto-generated SharePoint emails.
WRT54G - filter out websites
IE8 issue with CSS menu
Compare Internet Explorer (IE6) Security Settings
what is normal replication time between DC's?
I am having trouble opening a .bat file in a VBA Excel Macro
Operation Must Use an Updateable Query
Clearing a submit form once submitted