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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Recode in script

Hi guys,

I have field which has string value DB or DBNull and numbers.

I'd like to recode them in system missing.

I tried to use

IF(wildmatch(Field, '*DB*', ''), Field ) as Field

It didn't work.

1 Solution

Accepted Solutions
its_anandrjs
Champion III
Champion III

Try with this

IF(wildmatch(Field, '*DB*'),'',Field ) as Field


If found what you need blank space or some other value.


View solution in original post

2 Replies
MK_QSL
MVP
MVP

IF(WildMatch(Field,'*DB*),Field) as Field

its_anandrjs
Champion III
Champion III

Try with this

IF(wildmatch(Field, '*DB*'),'',Field ) as Field


If found what you need blank space or some other value.