Hide a record in RDLC

2011-03-08


Here we found a solution for hiding a record in .rdlc file:

Add the following expression in the Hidden property for the row.

=iif((Fields!Etag.Value.ToString().IndexOf("E")=0),true,false).

This expression will hide the records that are starts with "E".