Showing posts with label reporting. Show all posts
Showing posts with label reporting. Show all posts

Monday, November 17, 2014

SSRS Embedded Images Best Practices

Josh,

So you want to use some images in an SSRS report, keep these tips in mind to ensure they look great!

Monday, November 3, 2014

SSRS Display Zero for Nulls

Josh,

So you have a report where there are null values in some of the text boxes.  To display zero instead, use this handy expression.

Tuesday, September 30, 2014

SSRS Multi-Value Parameter Performance Issue

Josh,

So you've built a report off a query that uses a multi-value parameter and you've defaulted the parameter to use every option from a dataset.  This works fine for a few values, but when the multi-value parameter contains hundreds, the query is dreadfully slow!

The solution is to add a default value to ignore your parameter in the query...

Wednesday, August 27, 2014

SSRS Alternating Row Colors in Matrix

Josh,

So you've added a Matrix in SSRS and want to have alternating row colors.  You've found the RunningValue function useful, but when there isn't data in some of the columns, the alternating colors start getting wacky:

Here's what you did to get the row colors looking right...

Thursday, May 29, 2014

SSRS Format Expression for Millions

Josh,

So you want to display a number in millions (i.e. $2,123,456 as $2.12) on an SSRS report, perhaps as a data label on a chart.

Here is the format expression to do so as well as for Thousands and Billions.

Wednesday, April 30, 2014

The SSRS Document Map

Josh,

So, you need to create a large report with multiple objects, tables, and graphs.  Most likely the business user will want this output to Excel, PDF, or Word.  It will be very annoying for the user to have to scroll to page x in order to see that certain graph or chart.  It would be nice to have a table of contents or some other type of bookmarks for a user to navigate to the section they desire.

Tuesday, April 15, 2014

SSRS Lookup Function Solves MDX Issue

Josh,

So you have an MDX query that you are using in an SSRS report. You need to show subtotals and totals, but there are a couple of issues:
  1. The totals and subtotals are on averages which are difficult to total
  2. The objects being counted could span multiple groups so that a sum on the report would not accurately match what's coming from the cube
The SSRS Lookup function can help solve this issue!