Book Image

Mastering Qlik Sense

By : Juan Ignacio Vitantonio
Book Image

Mastering Qlik Sense

By: Juan Ignacio Vitantonio

Overview of this book

Qlik Sense is a powerful, self-servicing Business Intelligence tool for data discovery, analytics and visualization. It allows you to create personalized Business Intelligence solutions from raw data and get actionable insights from it. This book is your one-stop guide to mastering Qlik Sense, catering to all your organizational BI needs. You'll see how you can seamlessly navigate through tons of data from multiple sources and take advantage of the various APIs available in Qlik and its components for guided analytics. You'll also learn how to embed visualizations into your existing BI solutions and extend the capabilities of Qlik Sense to create new visualizations and dashboards that work across all platforms. We also cover other advanced concepts such as porting your Qlik View applications to Qlik Sense,and working with Qlik Cloud. Finally, you'll implement enterprise-wide security and access control for resources and data sources through practical examples. With the knowledge gained from this book, you'll have become the go-to expert in your organization when it comes to designing BI solutions using Qlik Sense.
Table of Contents (16 chapters)

Script control statements

Control statements are used to control the flow of the script. Without the control statements, our script would be executed sequentially from top to bottom and every single line of code would be executed.

A script is formed by a group of statements. These statements can either be regular or control statements.

Regular statements are usually used to manipulate data. A LOAD statement is an example of a regular statement as follows:

MyTable:
LOAD * FROM [LIB://MyFolder\Sales.qvd] (qvd);

By using control statements, we can force the script to execute certain code based on certain conditions.

Control statements end with a semicolon or with an end-of-line.

Keep on reading to learn more about these powerful statements.

Organizing your script

...