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: 
mahitham
Creator II
Creator II

Replace() help

Hi Experts,

Can any one please help me on below requirement.

I have field with below data in excel. Please help me to replace Not Applicable to n/a in the backend.

Number

4586

12463

28336

Not Applicable

536303

Thanks in advance

1 Solution

Accepted Solutions
OmarBenSalem

When u load it, load it as follow:

if(Number='Not Applicable','n/a', Number) as Number

View solution in original post

2 Replies
OmarBenSalem

When u load it, load it as follow:

if(Number='Not Applicable','n/a', Number) as Number

Chanty4u
MVP
MVP

try this

load *, if(Number='Not Applicable','N/A',Number) as New;

load * Inline[

Number


4586


12463


28336


Not Applicable


536303


];