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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
ashmitp869
Creator II
Creator II

Qlikview script

Hi All,

How to exclude the first 5 position of any field and load in qlik script. My requirement is to pick after "-" ?

The data in table looks like below

1.PNG

TMP_table:

load EpisodeKey,
cxxx, 
yyyt
FROM [\\xxx\yyy\sample.qvd](qvd);

Labels (1)
1 Solution

Accepted Solutions
MayilVahanan
MVP
MVP

HI @ashmitp869 

Try like subfield function like below

Load SubField(EpisodeKey , '-',2) as EpisodeKey, 

cxxx, 
yyyt
FROM [\\xxx\yyy\sample.qvd](qvd);

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

1 Reply
MayilVahanan
MVP
MVP

HI @ashmitp869 

Try like subfield function like below

Load SubField(EpisodeKey , '-',2) as EpisodeKey, 

cxxx, 
yyyt
FROM [\\xxx\yyy\sample.qvd](qvd);

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.