This is very helpful blog about Reporting Services
http://blogs.msdn.com/chrishays/
Thursday, February 25, 2010
Reporting Service 2005 - top values? - limit the number of displayed data rows
Sometimes I need to show only top 5 values from defined data source in the data table, without setting the number of rows in SQL query (top statement).
In data table set visibility expresion for a table row to:
=iif(RunningValue(Fields!Id.Value, CountDistinct, nothing) > 5, true, false)
In data table set visibility expresion for a table row to:
=iif(RunningValue(Fields!Id.Value, CountDistinct, nothing) > 5, true, false)
Thursday, February 11, 2010
Dynamic LINQ
Scott Hanselman blogs about dynamic linq query generation.
I find this article very interesting
I already worked on the similar problem some times ago and I blogged my solution here :
I find this article very interesting
I already worked on the similar problem some times ago and I blogged my solution here :
Subscribe to:
Posts (Atom)