本文介绍了如何使用dataview.RowFilter过滤数据表中的空白的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好



我想使用Dataview.RowFilter过滤数据表中的空白。

我该怎么做?



我在数据表中有空白。我想使用RowFilter在数据表中单独过滤空白。

Hi All

I want to filter the Blanks in Datatable using Dataview.RowFilter.
How can i do this?

I have blanks in datatable. i want to filter the blanks alone in the datatable using RowFilter.

推荐答案

DataTable.DefaultView.RowFilter = "Value IS NOT NULL"





注意:Value是数据表中的列名。



希望它有所帮助。



Note: Value is a column name in the datatable.

Hope it helps.


这篇关于如何使用dataview.RowFilter过滤数据表中的空白的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 18:58