Book Image

Pentaho Business Analytics Cookbook

By : Sergio Ramazzina
Book Image

Pentaho Business Analytics Cookbook

By: Sergio Ramazzina

Overview of this book

<p>Pentaho Business Analytics 5 is a complete open source business intelligence suite, providing data integration, OLAP, reporting, data visualization, and data mining features.&nbsp; Pentaho Business Analytics Cookbook provides you with a valuable and detailed set of recipes that illustrate all the features of Pentaho Business Analytics 5, the new version of the popular BI platform. The book provides clear illustrations and simple examples, helping you learn the core topics visually.</p>
Table of Contents (19 chapters)
Pentaho Business Analytics Cookbook
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
Index

Using input parameters


Sometimes, users want to modify a report's output over a set of conditions. This set of conditions, known as input parameters, can be used to filter a report's output dataset or to modify the report's appearance. This recipe will show how to use an input parameter to obtain different report outputs.

Getting ready

For this recipe, we must have Pentaho Report Designer started.

How to do it...

In the previous recipe's report, we colored the store_sales field's background depending on a minimum and maximum threshold value; we use a red background in the case that the cell's value is less than $200 or a green background if the cell's value is greater than $700. The following steps detail how to use input parameters to let the user change the threshold values:

  1. From the Pentaho Report Designer menu, select the Open option under the File menu. The Open file dialog box opens. Go to the <cookbook_samples>/ch07/resources directory and select report_designer_sample_7.prpt. Click...