Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Team,
case when PLN33 ='GEC'
then 'GEC - ' || DEPARTMENT else PLN33 end DEPARTMENT.
please any one help on this to change in to qlik syntax
Thanks,
Chinnu.
Hi An Pham,
Thanks for your quick reply. I tried by using pick and if conditions but its not worked.
Thanks,
Chinnu
Try with:
LOAD
If(PLN33 ='GEC','GEC - ' & DEPARTMENT,PLN33) ,
xxx,
...
Thanks Jean For your time its working fine now.
So, if you want to use Pick/Match you try with:
LOAD
pick(match(PLN33,'GEC')+1, PLN33, 'GEC - ' & DEPARTMENT),
xxx,