filter in report designer

Stimulsoft Reports.NET discussion
Post Reply
progame
Posts: 46
Joined: Sat Nov 25, 2006 9:12 am
Location: china

filter in report designer

Post by progame »

1, i can't find guid type in datatypes
2, how to filter with ( == null) or (!=null)
Edward
Posts: 2913
Joined: Fri Jun 09, 2006 4:02 am

filter in report designer

Post 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.
progame
Posts: 46
Joined: Sat Nov 25, 2006 9:12 am
Location: china

filter in report designer

Post by progame »

why not add this filter in designer?

add ïs null" , ïs not null
Edward
Posts: 2913
Joined: Fri Jun 09, 2006 4:02 am

filter in report designer

Post 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.
Post Reply