Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
QlikView for Developers Cookbook

You're reading from   QlikView for Developers Cookbook Take your QlikView training to the next level with this brilliant book that's packed with recipes which progress from intermediate to advanced. The step-by step-approach makes learning easy and enjoyable.

Arrow left icon
Product type Paperback
Published in Jun 2013
Publisher Packt
ISBN-13 9781782179733
Length 290 pages
Edition 1st Edition
Arrow right icon
Author (1):
Arrow left icon
Stephen Redmond Stephen Redmond
Author Profile Icon Stephen Redmond
Stephen Redmond
Arrow right icon
View More author details
Toc

Table of Contents (19) Chapters Close

QlikView for Developers Cookbook
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Charts 2. Layout FREE CHAPTER 3. Set Analysis 4. Advanced Aggregations 5. Advanced Coding 6. Data Modeling 7. Extensions 8. Useful Functions 9. Script 10. Improving Performance 11. Security Index

Using Exists and Keep to limit the data load


Quite often, we need to restrict the amount of data that we are loading. We can usually do this by comparing the value in a particular field to some other value (for example, Year > 2010), but we might also need to load the data based on the values that have already been loaded into memory.

Getting ready

Load the following script:

Sales:
LOAD * INLINE [
  Year, Country, SalesPersonID, Sales
  2011, Germany, 1, 1233
  2012, Germany, 1, 2133
  2013, Germany, 1, 3421
  2011, UK, 2, 1567
  2012, UK, 2, 2244
  2013, UK, 2, 2567
  2011, USA, 3, 1098
  2012, USA, 3, 1123
  2013, USA, 3, 1456
];
SalesPerson:
LOAD SPID As SalesPersonID,
  SalesPersonName as SalesPerson;
Load * INLINE [
  SPID, SalesPersonName
  1, John Smith
  2, Jayne Volta
  3, Graham Brown
  4, Anita Weisz
];

Budget:
LOAD * INLINE [
  Year, Country, Budget
  2012, Germany, 2100
  2013, Germany, 3100
  2014, Germany, 4100
  2012, UK, 2100
  2013, UK, 2600
  2014, UK, 3100
  2012, USA...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image