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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Separate feild to 3 feilds

hay

i have feild that containing kod , for exm. 12f , 13i, 14s, 12i , 12s...

the sign is color and the number is Texture.

i want to make new feild that containing the all kod with "s" how can i do it ?

thank's for your help.

yarin.

Labels (1)
2 Replies
sreenivas
Creator III
Creator III

Table:

Load if((Right(KOD,1)='s'),KOD)as Kod1;

LOAD * INLINE [

   KOD

   12f

   13i

   14s

   12i

   12s

  

];

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try this script

Test:

Load If(Index(KOD, 's'), KOD) AD TempKod;

LOAD * INLINE [

   KOD

   12f

   13i

   14s

   12i

   12s

];

Hope this helps you.

Regards,

Jagan.