Book Image

QlikView Unlocked

By : Andrew Dove, Roger Stone
Book Image

QlikView Unlocked

By: Andrew Dove, Roger Stone

Overview of this book

QlikView Unlocked will provide you with new insights to get the very best from QlikView. This book will help you to develop skills to work with data efficiently. We will cover all the secrets of unleashing the full power of QlikView, which will enable you to make better use of the tool and create better results for future projects. In the course of this book, we will walk you through techniques and best practices that will enable you to be more productive. You will gain quick insights into the tool with the help of short steps called ”keys,” which will help you discover new features of QlikView. Moving on you will learn new techniques for data visualization, scripting, data modeling, and more. This book will then cover best practices to help you establish an efficient system with improved performance. We will also teach you some tricks that will help you speed up development processes, monitor data with dashboards, and so on. By the end of this book, you will have gained beneficial tips, tricks, and techniques to enhance the overall experience of working with QlikView.
Table of Contents (16 chapters)
QlikView Unlocked
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Hidden Image List
Index

Reading from a spreadsheet


There are times when we need to read data from an Excel spreadsheet, and in many cases, this data comes from a single worksheet inside it. The QlikView wizard creates something similar to this:

FROM
[..\QlikView Unlocked Data Chapter 4.xlsx]
(ooxml, embedded labels, table is [Sheet1]); 

This is fine, but if the user decides to tidy up the spreadsheet and give the worksheet a name, it will stop the script from running. However, if we remove the ", table is [Sheet1]" part, it will still work fine:

FROM
[..\QlikView Unlocked Data Chapter 4.xlsx]
(ooxml, embedded labels); 

This would happen as long as the data is still on the first worksheet. This just builds in a little extra bit of resilience.

You can also read multiple files using a wildcard in the name. This works with all types of files, including database tables. So, for example, you might have spreadsheets with sales data in them for each month and year. The names of each spreadsheet could be something similar to...