Book Image

QlikView Essentials

By : Chandraish Sinha
Book Image

QlikView Essentials

By: Chandraish Sinha

Overview of this book

This guide demonstrates just how easy it is to get started with QlikView and create your own BI application. Featuring an introduction to its core features before exploring how to load data and model it, you’ll soon become more confident that you can take full advantage of QlikView’s capabilities.. You will also learn how to use QVD files with QlikView – and how they offer a simpler way of handling data. After digging deeper into data handling, as you learn how to use mapping tables and create a master calendar, you’ll then find out how to get the most from QlikView’s visualization features – vital if you are to use your data insights effectively. From accessible and user friendly dashboards to strategies and best practices for subjecting data to further analysis, you can be confident that you’ll be prepared to get the most out of your data with QlikView. With details on how to finally secure your application and deploy it for a successful integration in your organization, QlikView Essentials underlines exactly why QlikView is becoming more and more popular for businesses that understand the value of data.
Table of Contents (15 chapters)
QlikView Essentials
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Index

Using Set Analysis


We will perform a few Set Analysis expressions to understand the power of Set Analysis. It is important for the Adventure Works company to perform a year-by-year comparison of sales. It will help them in asking questions about the years when sales went down and look for the reasons.

Use QlikEssentials_Presentation.qvw for this example. Navigate to the Using Functions tab, right click on any empty space, and select Copy Sheet. This will create a copy of the sheet:

  1. Modify the title of the sheet as Comparative Analysis and remove the two tables from the sheet.

  2. Create a straight table. Select ProductLineDesc as a dimension and label it as Product Line. Check Suppress When Value is Null.

  3. Create an expression for sales for the year 2006. This will use the Set Analysis syntax:

    Sum({<Year = {'2006'}>}LineSalesAmount) 

    Add an expression for sales for the current year and label it as =Max(Year):

    Sum({<Year = {$(=Max(Year))}>}LineSalesAmount)

    Add an expression for sales for the...