PB 12.5.1
i noticed that datawindow filters don't work with more than 1 like in it.
I have the following:
name is a column
code is a column
xfiltervalue is a compute field
if i enter
upper( name ) LIKE xfiltervalue + '%'
in the filter, it is fine.
if i enter
upper( code ) LIKE xfiltervalue + '%'
in the filter, it is fine.
if i enter
upper( name ) LIKE xfiltervalue + '%' OR upper( code ) LIKE xfiltervalue + '%'
the filter dialog errors with 'expecting true/false expression'
appears to be a bug in the datawindow's filter processing.