dataview.rowfilter not filtering
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
i have a datatable representing items in an order as follows Items: itemNum Origin Destination QtyOrdered AmountPackaged I have a datagrid that i only want to show only the items that haven't been fully packaged i.e. QtyOrdered isn't the same as AmountPackaged. So i set its datasource to the tables default view and set items.defaultview.rowfilter = "QtyOrdered <> AmountPackaged" However this doesn't seem to do anything as when AmountPackaged matches QtyOrdered the row never gets filtered out. any idea on why my filter isn't working?