Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I need to change value in "Owner" column to Tom where Fruit contains "Apple". How can I do it? Thanks!
Fruit | Owner |
Green Apple | Sam |
Red Apple | Linda |
Green Kiwi | Nancy |
Yellow Banana | Mary |
Yellow Pineapple | John |
Red Strawberry | Mary |
May be like this:
If(WildMatch(Fruit, '*Apple*'), 'Tom', Owner) as Owner
May be like this:
If(WildMatch(Fruit, '*Apple*'), 'Tom', Owner) as Owner
Or this:
If(Index(Fruit, 'Apple'), 'Tom', Owner) as Owner