I'm assuming its gotta be something with the data format.
.. possibly. The column I'm trying to filter has to be the Hull with PS. Ive tried a few different options & Im stumped.
VBA Code:
Private Sub cboHull_AfterUpdate()
Requeryform
End Sub
VBA Code:
Sub Requeryform()
Dim strSQL As String
strql = ""
If Len("" & Me!cboHull) > 0 Then
strSQL = " [Hull_PS]= '" & Me!cboHull.Value
End If
If Len(strSQL) = 0 Then
Me.FilterOn = False
Else
Me.Filter = strSQL
Me.Filter = True
End If
End Sub
.. possibly. The column I'm trying to filter has to be the Hull with PS. Ive tried a few different options & Im stumped.