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: 
Anonymous
Not applicable

Using analog of WildMatch in Dynamic Update

Colleagues, good evening!

Has anyone faced with tasks to use wildmatch function in dynamic update?

I have very simple data set:

 

IDNameResult
1Name
21Name1
3Name1
4Nam
5N

So in DU i need to set "Done" value in Result field for those records, which met the following condition:

WildMatch(Result, '*Name*').

I read some threads about this topic (like using LIKE statement from SQL), but it doesn't give necessary result.

Could anyone advice something?

p.s. Using If statement isn't appropriate solution for my task.

Andrew.

11 Replies
Anonymous
Not applicable
Author

Thanks!

I tried your statement, but it doesn't give any result (nothing happens)

tamilarasu
Champion
Champion

Hi Andrei,

Have a look at the attached file. Have a nice week ahead!

=Concat({<Name = {"*Name*"}>} 'Update Main SET Result =' & chr(39) & 'Done' & chr(39) & ' Where Name =' & chr(39) & Name & chr(39) , ';' & chr(13))

Capture.PNG