SSRS How to repeat the table header on each page in print preview

To repeat rows with column headings for a table with row groups In Design view, select the table. The Grouping pane displays the row groups. On right side of the Grouping pane, click the down arrow, and then click Advanced. The Grouping pane displays static and dynamic tablix members for each group. You can only … Read more

SSRS 2008 – Dealing with division by zero scenarios

IIf will always evaluate both results before deciding which one to actually return. Try =IIf(Fields!SomeField.Value = 0, 0, Fields!SomeOtherField.Value / IIf(Fields!SomeField.Value = 0, 1, Fields!SomeField.Value)) This will use 1 as the divisor if SomeOtherField.Value = 0, which does not generate an error. The parent IIf will return the correct 0 for the overall expression.

Reporting Services permissions on SQL Server R2 SSRS

This did the trick for me. http://thecodeattic.wordpress.com/category/ssrs/. Go down to step 35 to see the error you are getting. Paraphrasing: Once you’re able to log in to YourServer/Reports as an administrator, click Home in the top-right corner, then Folder Settings and New Role Assignment. Enter your user name and check a box for each role … Read more

Is there an easy way to rearrange tablix columns in SSRS design mode?

There is a way to move columns through the designer: insert the number of blank columns you want to move in your destination spot shift-left-click on the cells (NOT the header column) you want to move right-click and select the Cut command right-click on top of the destination columns and select Paste delete the now … Read more