SBendBuckeye
Programmer
Hello all,
I am trying to filter a DataView on 2 columns. When I first set the filter it does not appear to take (eg DataView.Count = DataTable.Rows.Count), not less as should be the case with the Filter set. I have tried various permutations of the following:
Am I missing something obvious here? Thanks in advance!
I am trying to filter a DataView on 2 columns. When I first set the filter it does not appear to take (eg DataView.Count = DataTable.Rows.Count), not less as should be the case with the Filter set. I have tried various permutations of the following:
Code:
Column1 = 'Value1' OR Column2 = 'Value2'
(Column1 = 'Value1') OR (Column2 = 'Value2')
((Column1 = 'Value1') OR (Column2 = 'Value2'))