Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
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

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

Try this way

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

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