Reputation: 133
I'm trying to filter a Continuous Form by the [Resource Categories] field which is a text box using a combobox [ComboResourceCatV2] And then a second filter to check the operation is still open [OpCmplt]
Me.Filter = [Resource Categories] = " & ([ComboResourceCatV2]) & " And ([OpCmplt] = False)
Me.FilterOn = True
I don't understand as i have used this approach before without issue but this time it keeps returning a blank form...
Any suggestions what maybe causing it?
Upvotes: 0
Views: 887
Reputation: 8518
Ty this:
Me.Filter = "[Resource Categories] = '" & [ComboResourceCatV2].Value & "' And [OpCmplt] = False"
Your quotation marks were a bit off.
Upvotes: 1