Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

load specific fields from a table base in a rule

Hello, all..

I got a table named TAB with the following fields:

TAB

-----------

primaryKey

info.health

name.health

info.edu

name.edu

info.org

name.org

How do I load a resident table based on this first, with 'primaryKey' and all fields terminated with "edu"???

1 Reply
swuehl
MVP
MVP

Using AS to rename fields, or

QUALIFY *;

UNQUALIFY primaryKey;

edu:

LOAD

primaryKey,

info.health,

name.health,

info.edu,

name.edu,

info.org,

name.org

FROM YourTableSource;