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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register 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);

1 Solution

Accepted Solutions
MayilVahanan

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

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.