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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

RECODE

hi guys,

Please help with idea how to recode all remaining tags to one tag

IF(wildmatch([AAA],'*support*'),'Came for support',IF(WildMatch([Primary purpose of visit], not '*support*'),'Others') ) as [Primary purpose of visit],

Thanks,

1 Solution

Accepted Solutions
its_anandrjs
Champion III
Champion III

Try this way

IF(Wildmatch([AAA],'*support*'),'Came for support',

IF(Not WildMatch([Primary purpose of visit],  '*support*'),'Others') ) as [Primary purpose of visit]

View solution in original post

2 Replies
alexandros17
Partner - Champion III
Partner - Champion III

IF(wildmatch([Primary purpose of visit],'*support*')>0,'Came for support','Others')

) as [Primary purpose of visit],

its_anandrjs
Champion III
Champion III

Try this way

IF(Wildmatch([AAA],'*support*'),'Came for support',

IF(Not WildMatch([Primary purpose of visit],  '*support*'),'Others') ) as [Primary purpose of visit]