Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to remove values in column in script?

Hi i have one column

Country

a

b

c

d

e

now i want remove a,b,c values in country coumn

in qlikview script

please help on that

5 Replies
Not applicable
Author

first load all data which is not required in that particular column. This table should reflect ass different entity in data model.

then you can restrict record using join or using where clause

Not applicable
Author

Hi ,

Try like this :

Table1:

LOAD * INLINE [

   Country

    a

    b

    c

    d

];

NoConcatenate

load * Resident Table1 where not wildmatch(Country,'a','b','c');

drop table Table1;

Thanks !!

sujeetsingh
Master III
Master III

Load*

from table where wildmatch(Country,'a','b','c')<>1

qlikmsg4u
Specialist
Specialist

YOU CAN USE where condition while loading the data.

Where not match(country, 'a','b','c')

MayilVahanan

Hi

Try like this

Load * from table where not match(Country,'a','b','c');

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