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

Removing fields with a wildcard


This particular recipe was inspired by a client of mine who was loading data from a shared set of QVDs. There were a lot of fields in the QVDs that he didn't need and he was wondering if he could; rather than manually pruning the load statement, automatically remove fields based on a wild card (all the fields that he wanted removed had the word CUSTOM_ at the beginning).

Unfortunately, we cannot use wildcards in the Drop Fields statement. There are a couple of useful functions that we can use to achieve this.

Getting ready

Load the following script:

MyTable:
LOAD * INLINE [
F1, F2, F3, F4
1, 2, 3, 4
];

Rename Field F1 to NewField;
Rename Field F3 to NewField2;

How to do it...

Use these steps to see how to remove fields with a wildcard:

  1. Add the following script:

    Let i = 1;
    
    Do While i <= NoOfFields('MyTable')
    
      Trace Getting Field $(i) From MyTable;
      
      Let FieldName = FieldName($(i), 'MyTable');
      
      Trace FieldName = $(FieldName);
      
      If '$(FieldName)' Like...
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