Hi There,
I am having a strange problem with regards to when I set my filter I want to grab the fields which are greater than the value set in a drop down box.
here is my code
If IsNull(Me.indEndDate.Value) = False Then
If count > 0 Then
filterString = filterString + " AND sessionDate < = #" + Me.indBeginDate.Value + "#"
count = count + 1
Else
filterString = filterString + " sessionDate < = #" + Me.indBeginDate.Value + "#"
count = count + 1
End If
End If
Me.indFirstName.Value = filterString
The string I get is sessionDate >= #Date#
Is this wrong, because it does not reutnr anything.
Many Thanks
Chris
I am having a strange problem with regards to when I set my filter I want to grab the fields which are greater than the value set in a drop down box.
here is my code
If IsNull(Me.indEndDate.Value) = False Then
If count > 0 Then
filterString = filterString + " AND sessionDate < = #" + Me.indBeginDate.Value + "#"
count = count + 1
Else
filterString = filterString + " sessionDate < = #" + Me.indBeginDate.Value + "#"
count = count + 1
End If
End If
Me.indFirstName.Value = filterString
The string I get is sessionDate >= #Date#
Is this wrong, because it does not reutnr anything.
Many Thanks
Chris