littlecool
Registered User.
- Local time
- Yesterday, 21:49
- Joined
- Mar 20, 2014
- Messages
- 11
Hi all,
I have a form that the user can use to sort records on another form. Using other examples found on here I made Coding to do so. From what I can see it should work, however when I run it I get the following message:
Run-Time error '3075:
Extra > in query expression '([Shift] = "") AND ([Equipment] = "Tailseal") AND ([Line] = "79*") AND ([Line] = "62*") AND ([RecordNumber] = )'.
I've tried various things to correct the error but I can't find what I'm missing. Here is my code. Any help or suggestions is greatly appreciated!
I have a form that the user can use to sort records on another form. Using other examples found on here I made Coding to do so. From what I can see it should work, however when I run it I get the following message:
Run-Time error '3075:
Extra > in query expression '([Shift] = "") AND ([Equipment] = "Tailseal") AND ([Line] = "79*") AND ([Line] = "62*") AND ([RecordNumber] = )'.
I've tried various things to correct the error but I can't find what I'm missing. Here is my code. Any help or suggestions is greatly appreciated!
Code:
Private Sub cmdGo_Click()
'Purpose: Build up the criteria string form the non-blank search boxes, and apply to the form's Filter.
'Notes: 1. We tack " AND " on the end of each condition so you can easily add more search boxes; _
we remove the trailing " AND " at the end.
' 2. The date range works like this: _
Both dates = only dates between (both inclusive. _
Start date only = all dates from this one onwards; _
End date only = all dates up to (and including this one).
Dim strWhere As String 'The criteria string.
Dim lngLen As Long 'Length of the criteria string to append to.
Const conJetDate = "\#mm\/dd\/yyyy\#" 'The format expected for dates in a JET query string.
'***********************************************************************
'Look at each search box, and build up the criteria string from the non-blank ones.
'***********************************************************************
'Text field example. Use quotes around the value in the string.
If Not IsNull(Me.cboTeam) Then
strWhere = strWhere & "([Team] = """ & Me.cboTeam & """) AND "
End If
'Another text field example. Use Like to find anywhere in the field.
If Not IsNull(Me.cboShift) Then
strWhere = strWhere & "([Shift] = """ & Me.cboShift & """) AND "
End If
'Another text field example. Use Like to find anywhere in the field.
If Not IsNull(Me.cboWho) Then
strWhere = strWhere & "([ION] = """ & Me.cboWho & """) AND "
End If
'Another text field example. Use Like to find anywhere in the field.
If Not IsNull(Me.cboEquip1) Then
strWhere = strWhere & "([Equipment] = """ & Me.cboEquip1 & """) AND "
End If
'Another text field example. Use Like to find anywhere in the field.
If Not IsNull(Me.cboEquip2) Then
strWhere = strWhere & "([Equipment] = """ & Me.cboEquip2 & """) AND "
End If
'Another text field example. Use Like to find anywhere in the field.
If Not IsNull(Me.cboEquip3) Then
strWhere = strWhere & "([Equipment] = """ & Me.cboEquip3 & """) AND "
End If
'Another text field example. Use Like to find anywhere in the field.
If Not IsNull(Me.cboEquip4) Then
strWhere = strWhere & "([Equipment] = """ & Me.cboEquip4 & """) AND "
End If
'Another text field example. Use Like to find anywhere in the field.
If Not IsNull(Me.cboLineA) Then
strWhere = strWhere & "([Line] = """ & Me.cboLineA & """) AND "
End If
'Another text field example. Use Like to find anywhere in the field.
If Not IsNull(Me.cboLineB) Then
strWhere = strWhere & "([Line] = """ & Me.cboLineB & "*"") AND "
End If
'Another text field example. Use Like to find anywhere in the field.
If Not IsNull(Me.cboLineC) Then
strWhere = strWhere & "([Line] = """ & Me.cboLineC & "*"") AND "
End If
'Another text field example. Use Like to find anywhere in the field.
If Not IsNull(Me.cboLineD) Then
strWhere = strWhere & "([Line] = """ & Me.cboLineD & "*"") AND "
End If
'Another text field example. Use Like to find anywhere in the field.
If Not IsNull(Me.txtRecord) Then
strWhere = strWhere & "([RecordNumber] = " & Me.txtRecord & ") AND "
End If
' 'Number field example. Do not add the extra quotes.
' If Not IsNull(Me.cboFilterLevel) Then
' strWhere = strWhere & "([LevelID] = " & Me.cboFilterLevel & ") AND "
' End If
' 'Another text field example. Use Like to find anywhere in the field.
' If Not IsNull(Me.cbxJobType) Then
' strWhere = strWhere & "([ActType] Like ""*" & Me.cbxJobType & "*"") AND "
' End If
'Another text field example. Use Like to find anywhere in the field.
If Not IsNull(Me.cbxJobType) Then
strWhere = strWhere & "([ActType] = """ & Me.cbxJobType & "*"") AND "
End If
'Another text field example. Use Like to find anywhere in the field.
If Not IsNull(Me.cbxCauseType) Then
strWhere = strWhere & "([CauseType] = """ & Me.cbxCauseType & "*"") AND "
End If
'Another text field example. Use Like to find anywhere in the field.
If Not IsNull(Me.cboFollowUp) Then
strWhere = strWhere & "([FollowUp] = """ & Me.cboFollowUp & "*"") AND "
End If
'Yes/No field and combo example. If combo is blank or contains "ALL", we do nothing.
' If Me.cboFollowUp = -1 Then
' strWhere = strWhere & "([FollowUp] = True) AND "
' ElseIf Me.cboFollowUp = 0 Then
' strWhere = strWhere & "([FollowUp] = False) AND "
' End If
'Date field example. Use the format string to add the # delimiters and get the right international format.
If Not IsNull(Me.tbxFrmDate) Then
strWhere = strWhere & "([Date] >= " & Format(Me.tbxFrmDate, conJetDate) & ") AND "
End If
'Another date field example. Use "less than the next day" since this field has times as well as dates.
If Not IsNull(Me.tbxToDate) Then 'Less than the next day.
strWhere = strWhere & "([Date] < " & Format(Me.tbxToDate + 1, conJetDate) & ") AND "
End If
'***********************************************************************
'Chop off the trailing " AND ", and use the string as the form's Filter.
'***********************************************************************
'See if the string has more than 5 characters (a trailng " AND ") to remove.
lngLen = Len(strWhere) - 5
If lngLen <= 0 Then 'Nah: there was nothing in the string.
MsgBox "No criteria", vbInformation, "Nothing to do."
Else 'Yep: there is something there, so remove the " AND " at the end.
strWhere = Left$(strWhere, lngLen)
'For debugging, remove the leading quote on the next line. Prints to Immediate Window (Ctrl+G).
Debug.Print strWhere
'Finally, apply the string as the form's Filter.
DoCmd.OpenForm "frmLgBk", acNormal, "", strWhere
Me.Filter = strWhere
Me.FilterOn = True
'DoCmd.OpenReport "Report1", acViewPreview, , strWhere
End If
End Sub