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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
renjithpl
Specialist
Specialist

Remove a row from load

Hi All,

I have a table like this, but i need to delete only one row from load script, without disturbing other rows,

I was not asked to use IF condition, using if condition and resident function i can remove, but is there any other way of doing this, may be using exists function, as i am not familiar using exists..

USER_GROUP COUNTRY_CODE COTYPE_SPPRSD
GEOGEHO Ctry
GEOGEHyper
GEOGESrv Ctr
GCC_ALLAE
GCC_ALLAEHO Ctry
GCC_ALLAEHyper
GCC_ALLAESrv Ctr
GCC_ALLAESuper
GCC_ALLAEWeb
GCC_ALLBHHO Ctry

the row in red font....

regards

ren

1 Solution

Accepted Solutions
Anonymous
Not applicable

You could use a where condition on your load with:

Where len(COTYPE_SPPRSD)>0;

View solution in original post

1 Reply
Anonymous
Not applicable

You could use a where condition on your load with:

Where len(COTYPE_SPPRSD)>0;