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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
vinod2086
Creator II
Creator II

issue

Hi ,

I have a column (TYPE) contains below

 

TYPE
Other
Others
missing
customs

Here i want to display instead of Others need to show Other and remaining fields.

Labels (1)
3 Replies
vishsaggi
Champion III
Champion III

Try like

LOAD Col1, col2, IF(NOT Match(TYPE, 'Others'), TYPE) AS TYPE

FROM yoursourcetablename;

Nagaraju_KCS
Specialist III
Specialist III

Try This,

Load *, IF(Match(TYPE, 'Others'), 'Other', TYPE) as NEWTYPE;

Load * Inline [

TYPE

Other

Others

missing

customs

];

shiveshsingh
Master
Master

if(Match(TYPE,'Others'), 'Other', TYPE) as your field


resident previousTable..