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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Aika
Contributor III
Contributor III

Filter values

Hi,

I have values, in a column date, like:

043689#PENLS_298610
000329#PEN_359677
000450#PEN_632580
096574#PENLS_156436
084405#PENLS_290274
...

I need to clean up the column date and get only the values that have "PENLS" inside:

043689#PENLS_298610
096574#PENLS_156436
084405#PENLS_290274
...

How can I do this using a Qlik function?
Who can help me in a short time?

2 Replies
MayilVahanan

Hi

Try like below

If(wildmatch(columndatafield, '*Penls*),columndatafield, '') as columndatafield

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Aika
Contributor III
Contributor III
Author

Thank you, I try.