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: 
ecabanas
Creator II
Creator II

Extract the two fiels from a field

Hi

I have this code  20161099 and I want to extract the position 5 and 6 "10" in load script.

Many thank's

Eduard

1 Solution

Accepted Solutions
MarcoWedel

Hi,

one solution might be:

QlikCommunity_Thread_238799_Pic1.JPG

LOAD *,

     Mid(Code,5,2)as SubCode

Inline [

Code

20161099

20171100

20181201

20191302

];

hope this helps

regards

Marco

View solution in original post

1 Reply
MarcoWedel

Hi,

one solution might be:

QlikCommunity_Thread_238799_Pic1.JPG

LOAD *,

     Mid(Code,5,2)as SubCode

Inline [

Code

20161099

20171100

20181201

20191302

];

hope this helps

regards

Marco