Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn 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;