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: 
everest226
Creator III
Creator III

two value combined in field ,

Membership field has value = 'NOT PROVIDED','LOW ENTRY', 'Gold','Diamond', 'Silver','Cooper',

I want to two value in one,   like silver and cooper as silver and rest as usual , bellow is the syntax needed to be update

 

 

 

If(Upper([Membership])='NOT PROVIDED','LOW ENTRY',
Upper([Membership])) as [Membership],

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar

May be this?

If(Match(Upper(Membership), 'SILVER', 'COOPER'), 'silver', 'usual') as NewFieldName

View solution in original post

1 Reply
sunny_talwar

May be this?

If(Match(Upper(Membership), 'SILVER', 'COOPER'), 'silver', 'usual') as NewFieldName