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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
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

Labels (1)
1 Solution

Accepted Solutions
MarcoWedel
MVP
MVP

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
MVP
MVP

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