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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
posywang
Creator II
Creator II

How to change values in a column?

Hi,

I need to change value in "Owner" column to Tom where Fruit contains "Apple". How can I do it? Thanks!

   

FruitOwner
Green AppleSam
Red AppleLinda
Green KiwiNancy
Yellow BananaMary
Yellow PineappleJohn
Red StrawberryMary
1 Solution

Accepted Solutions
sunny_talwar

May be like this:

If(WildMatch(Fruit, '*Apple*'), 'Tom', Owner) as Owner

View solution in original post

2 Replies
sunny_talwar

May be like this:

If(WildMatch(Fruit, '*Apple*'), 'Tom', Owner) as Owner

sunny_talwar

Or this:

If(Index(Fruit, 'Apple'), 'Tom', Owner) as Owner