reporting services - SSRS How to hide the first five records -
how can hide first 5 records in tablix?
İ using top n filtering. have 2 tablixes. first 1 displays top 5 records. second 1 must display top (6-10).
how can achieve this?
you can set visibility of row based on rownumber function.
for example, set visibility of row like:
=iif(rownumber(nothing) >= 6 , rownumber(nothing) <= 10, false, true)
should hide rows other 6-10.
Comments
Post a Comment