Page 1 of 1

filter in report designer

Posted: Sun Jun 01, 2008 11:34 pm
by progame
1, i can't find guid type in datatypes
2, how to filter with ( == null) or (!=null)

filter in report designer

Posted: Mon Jun 02, 2008 6:34 pm
by Edward
progame wrote:1, i can't find guid type in datatypes
Please check the latest prerelease build.
2, how to filter with ( == null) or (!=null)
Here you are:

DataSource["DataFieldName"] == System.DBNull.Value

Thank you.

filter in report designer

Posted: Mon Jun 02, 2008 11:05 pm
by progame
why not add this filter in designer?

add ïs null" , ïs not null

filter in report designer

Posted: Wed Jun 04, 2008 1:55 am
by Edward
Thank you for suggestion. It is a really good idea.

Also checking may be done as follows:

Code: Select all

IsNull(DataSource,"DataColumnName") == true
Thank you.