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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Not equal to for normal expression

Hi,

Could you please let me know, how to make this as not equal to for the same expression.

 

=

if(Business_Source_Name='R' or Business_Source_Name='M' or Business_Source_Name='D"or Business_Source_Name='C',Business_Source_Name

)

This give me correct only based on the given list but if I want to not take all those except all then how to take?

Need help.

Best Regards,

Skumar

Labels (1)
1 Solution

Accepted Solutions
swuehl
Champion III
Champion III

Try

=if( not match(Business_Source_Name,'R','M','D','C'), Business_Source_Name)

View solution in original post

3 Replies
swuehl
Champion III
Champion III

Try

=if( not match(Business_Source_Name,'R','M','D','C'), Business_Source_Name)

Anonymous
Not applicable
Author

Excellent !!It works. Thanks a ton

Not applicable
Author

/= works well for not equal to

if(Business_Source_Name/='R' or Business_Source_Name/='M' or Business_Source_Name/='D"or Business_Source_Name/='C',Business_Source_Name

)