Book Image

SQL Server 2016 Reporting Services Cookbook

By : Dinesh Priyankara, Robert Cain
Book Image

SQL Server 2016 Reporting Services Cookbook

By: Dinesh Priyankara, Robert Cain

Overview of this book

Microsoft SQL Server 2016 Reporting Services comes with many new features. It offers different types of reporting such as Production, Ad-hoc, Dashboard, Mash-up, and Analytical. SQL Server 2016 also has a surfeit of new features including Mobile Reporting, and Power BI integration. This book contains recipes that explore the new and advanced features added to SQL Server 2016. The first few chapters cover recipes on configuring components and how to explore these new features. You’ll learn to build your own reporting solution with data tools and report builder, along with learning techniques to create visually appealing reports. This book also has recipes for enhanced mobile reporting solutions, accessing these solutions effectively, and delivering interactive business intelligence solutions. Towards the end of the book, you’ll get to grips with running reporting services in SharePoint integrated mode and be able to administer, monitor, and secure your reporting solution. This book covers about the new offerings of Microsoft SQL Server 2016 Reporting Services in comprehensive detail and uses examples of real-world problem-solving business scenarios.
Table of Contents (18 chapters)
SQL Server 2016 Reporting Services Cookbook
Credits
About the Authors
About the Reviewers
www.Packtpub.com
Preface

Creating reports with a matrix data region


In the previous recipe, you created a report using a Table. A table is great when an entire row is considered a single entity; all of the data on that row together represents what a user needs to know.

Consider a situation where a user is looking at data in aggregate. They are looking for a single data point, such as the grand total sales of product X for the current year. These reports are typically done as a pivot table, a style of report in which both the rows and columns have information and it is the intersection of the row and column that contains the valuable piece of data.

Excel is famous for creating these types of reports, and we can achieve the same result in SSRS by using a Matrix.

Getting ready

We will once again use the WideWorldImportersDW database for our demo. Rather than using the Query Designer in SSRS, we'll use SQL Server Management Studio to develop our query.

In addition to being a bit easier for an experienced developer, it can...