Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
joris_lansdaal
Creator
Creator

Load * with an acception

Hi all,

for section access I need to load give or take 25 fields. I can't use Load * because I need UPPER(NTNAME) as NTNAME.

Ís there a simple solution or should i hard code all the fields like:

table:

Load

     UPPER(NTNAME) as NTNAME,

     SH00

     SH01

     ....

     SH24

     SH25

from ......;

thanks

1 Solution

Accepted Solutions
maxgro
MVP
MVP

maybe (check if it works with section access)

load UPPER(NTNAME) as upperntname, * from .....;

drop field NTNAME;

rename field upperntname to NTNAME;

View solution in original post

2 Replies
maxgro
MVP
MVP

maybe (check if it works with section access)

load UPPER(NTNAME) as upperntname, * from .....;

drop field NTNAME;

rename field upperntname to NTNAME;

joris_lansdaal
Creator
Creator
Author

I can also use this principle at the step where I load the data from excel into a QVD. And then NTNAME will already be in upper.

Thanks!