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

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
AlexWest
Creator
Creator

Mapping or Remove value from field

Hi guys!

I have a field that I'm mapping. But there is a value that I have to make as Null().

The value is calling "Denies" but there is a value "SUCCESS" in this field , so I need to Null it, but just replacing is not working because the Value will be appeared everytime.

Is there any solution to make script that will remove (Null) the SUCCESS value?

Thanks!

Labels (2)
1 Solution

Accepted Solutions
Mark_Little
Luminary
Luminary

Hi,

I would change the value in to your mapping load, something like

Mapping Load

Key,

IF(Field = 'Success', Field, NULL()) as Field

From ...

View solution in original post

2 Replies
Mark_Little
Luminary
Luminary

Hi,

I would change the value in to your mapping load, something like

Mapping Load

Key,

IF(Field = 'Success', Field, NULL()) as Field

From ...

AlexWest
Creator
Creator
Author

Thanks! It works! 😃