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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to write script to get values


Hi,

I need to get the column Type values in straight table as

If Type not equal to Cheque,DD,CreditCard then Type

Could anyone help me how to write statement.

Thanks.

1 Solution

Accepted Solutions
CELAMBARASAN
Partner - Champion
Partner - Champion

Try

If(Not MixMatch(Type, 'Cheque', 'DD', 'CreditCard'), Type)

View solution in original post

3 Replies
CELAMBARASAN
Partner - Champion
Partner - Champion

Try

If(Not MixMatch(Type, 'Cheque', 'DD', 'CreditCard'), Type)

Not applicable
Author

Hi,

Try this :

If(Match(Type, 'Cheque', 'DD', 'CreditCard') = 0, Type)

Not applicable
Author

Thanks it's working