Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try

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

View solution in original post

3 Replies
swuehl
MVP
MVP

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

)