Monthly Archives: July 2009

SSRS Every Forth Page? – Shortest Code

On looking for the quickest way to spit something out on every forth page of an SSRS report I wrote this – anyone got a yet further abreviated way to set visibility on every forth page?
=iif(((Globals.PageNumber+1) Mod 4) = 0, False, True)

Posted in Report Writing, SSRS, Snippets | Leave a comment

SSRS 08 Reports Strait from URL

Looking to get SQL Server Reporting Services 08 reports to people easily? sometimes its simpler to just give them an url, which you can do and works well.
If you take the following and replace SERVERHOST, REPORT LOCATION/NAME,PARAMNAME and PARAMVALUE with your SSRS report details you can literally hand it out irrelevant of session, location (obviously [...]

Posted in Report Writing, SSRS | Leave a comment