Hi,
I'm having this problem, seems no big deal but I just don't find the way to solve it: I have a field in a form where the user writes a filter criteria and then accepts by pressing a button. The filter works good until the user uses the ' * ' in the search field. In that case no data is shown. The simplest example is when the only filter criteria is *. All the data should be shown, but by this filter method no data at all is shown.
The part of the code is:
Any ideas?
Thanks!
I'm having this problem, seems no big deal but I just don't find the way to solve it: I have a field in a form where the user writes a filter criteria and then accepts by pressing a button. The filter works good until the user uses the ' * ' in the search field. In that case no data is shown. The simplest example is when the only filter criteria is *. All the data should be shown, but by this filter method no data at all is shown.
The part of the code is:
Code:
Form.filter="Segment " & = '" & Field.Value & "'" Form.FilterOn = True
Thanks!
Comment